Add Venue type

This commit is contained in:
Dan 2018-03-09 14:46:16 +01:00
parent 281323288e
commit 24c2d20137

View 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