From d63b8d70e9d7536d9a2be2197288dce0e18d2055 Mon Sep 17 00:00:00 2001 From: Dmitri Shimanski Date: Tue, 8 Apr 2025 11:52:10 +0300 Subject: [PATCH] Initial commit --- main.py | 0 models/Apartment.py | 15 +++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 main.py create mode 100644 models/Apartment.py 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