brestok's picture
init
a7ed1bd
raw
history blame contribute delete
306 Bytes
from cbh.api.account.models import AccountShorten
from cbh.api.availability.dto import DaySchedule
from cbh.core.database import MongoBaseModel
class AvailabilityModel(MongoBaseModel):
"""
Availability model.
"""
coach: AccountShorten
weeklySchedule: list[DaySchedule] | None = None