mirror of
https://github.com/yawaflua/BiahadHakatonProject.git
synced 2025-12-08 19:29:35 +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