commit d63b8d70e9d7536d9a2be2197288dce0e18d2055 Author: Dmitri Shimanski Date: Tue Apr 8 11:52:10 2025 +0300 Initial commit diff --git a/main.py b/main.py new file mode 100644 index 0000000..e69de29 diff --git a/models/Apartment.py b/models/Apartment.py new file mode 100644 index 0000000..b8daffb --- /dev/null +++ b/models/Apartment.py @@ -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