diff --git a/pyrogram/client/types/venue.py b/pyrogram/client/types/venue.py new file mode 100644 index 00000000..f1c058fd --- /dev/null +++ b/pyrogram/client/types/venue.py @@ -0,0 +1,13 @@ +from . import Location + + +class Venue: + def __init__(self, + location: Location, + title: str, + address: str, + foursquare_id: str = None): + self.location = location + self.title = title + self.address = address + self.foursquare_id = foursquare_id