You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
802 B
27 lines
802 B
from .pietanze import PietanzaBase, PietanzaCreate, PietanzaUpdate, PietanzaResponse |
|
from .pasti import PastoBase, PastoCreate, PastoUpdate, PastoResponse, TipoPasto |
|
from .prenotazioni import PrenotazioneBase, PrenotazioneCreate, PrenotazioneUpdate, PrenotazioneResponse, StatoPrenotazione |
|
from .common import ErrorResponse, PaginatedResponse |
|
|
|
__all__ = [ |
|
# Pietanze models |
|
"PietanzaBase", |
|
"PietanzaCreate", |
|
"PietanzaUpdate", |
|
"PietanzaResponse", |
|
# Pasti models |
|
"PastoBase", |
|
"PastoCreate", |
|
"PastoUpdate", |
|
"PastoResponse", |
|
"TipoPasto", |
|
# Prenotazioni models |
|
"PrenotazioneBase", |
|
"PrenotazioneCreate", |
|
"PrenotazioneUpdate", |
|
"PrenotazioneResponse", |
|
"StatoPrenotazione", |
|
# Common models |
|
"ErrorResponse", |
|
"PaginatedResponse" |
|
]
|
|
|