mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-01 13:14:52 +00:00
Add Venue type
This commit is contained in:
parent
281323288e
commit
24c2d20137
1 changed files with 13 additions and 0 deletions
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 a new issue