Add Venue type
This commit is contained in:
parent
281323288e
commit
24c2d20137
13
pyrogram/client/types/venue.py
Normal file
13
pyrogram/client/types/venue.py
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user