Initial commit

This commit is contained in:
Dmitri Shimanski
2025-04-08 11:52:10 +03:00
commit d63b8d70e9
2 changed files with 15 additions and 0 deletions

0
main.py Normal file
View File

15
models/Apartment.py Normal file
View 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