mirror of
https://github.com/yawaflua/BiahadHakatonProject.git
synced 2025-12-08 19:29:35 +02:00
13 lines
228 B
Python
13 lines
228 B
Python
from .base import BaseSchema
|
|
from typing import List
|
|
|
|
|
|
class ApartmentSchema(BaseSchema):
|
|
owner: str
|
|
location: str
|
|
rooms: int
|
|
has_mamad: str
|
|
price: str
|
|
accepted_regions: str
|
|
is_available: bool = True
|