diff --git a/pyrogram/client/types/mask_position.py b/pyrogram/client/types/mask_position.py new file mode 100644 index 00000000..a7720dc7 --- /dev/null +++ b/pyrogram/client/types/mask_position.py @@ -0,0 +1,10 @@ +class MaskPosition: + def __init__(self, + point: str, + x_shift: float, + y_shift: float, + scale: float): + self.point = point + self.x_shift = x_shift + self.y_shift = y_shift + self.scale = scale