mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-28 12:57:52 +00:00
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…
x
Reference in New Issue
Block a user