mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 20:14:51 +00:00
Add Location type
This commit is contained in:
parent
4d367ce04e
commit
59f1fd9ee6
1 changed files with 6 additions and 0 deletions
6
pyrogram/client/types/location.py
Normal file
6
pyrogram/client/types/location.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
class Location:
|
||||
def __init__(self,
|
||||
longitude: float,
|
||||
latitude: float):
|
||||
self.longitude = longitude
|
||||
self.latitude = latitude
|
||||
Loading…
Reference in a new issue