mirror of
https://github.com/yawaflua/BiahadHakatonProject.git
synced 2025-12-09 19:59:29 +02:00
16 lines
501 B
Python
16 lines
501 B
Python
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
|