mirror of
https://github.com/yawaflua/BiahadHakatonProject.git
synced 2025-12-09 19:59:29 +02:00
Initial commit
This commit is contained in:
15
models/Apartment.py
Normal file
15
models/Apartment.py
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
class Apartment:
|
||||||
|
def __init__(self,
|
||||||
|
name: str,
|
||||||
|
contactData: str,
|
||||||
|
apartamentAddress: str,
|
||||||
|
roomsCount: int,
|
||||||
|
whereIsBombShelter: str,
|
||||||
|
costs: str
|
||||||
|
):
|
||||||
|
self.whereIsBombShelter = whereIsBombShelter
|
||||||
|
self.roomsCount = roomsCount
|
||||||
|
self.apartamentAddress = apartamentAddress
|
||||||
|
self.contactData = contactData
|
||||||
|
self.name = name
|
||||||
|
self.costs = costs
|
||||||
Reference in New Issue
Block a user