diff --git a/pyrogram/client/types/location.py b/pyrogram/client/types/location.py new file mode 100644 index 00000000..5252e67f --- /dev/null +++ b/pyrogram/client/types/location.py @@ -0,0 +1,6 @@ +class Location: + def __init__(self, + longitude: float, + latitude: float): + self.longitude = longitude + self.latitude = latitude