Prince/funda/models/house.py

7 lines
202 B
Python
Raw Permalink Normal View History

2021-08-16 20:06:55 +00:00
class House():
def __init__(self, id, url, name, image, checked=False):
self.id = id
self.name = name
self.image = image
self.url = url
self.checked = checked