Initial commit: Waste Collection API
This commit is contained in:
34
app/models.py
Normal file
34
app/models.py
Normal file
@@ -0,0 +1,34 @@
|
||||
# Pure Pydantic models — no waste_collection_schedule imports here.
|
||||
from .schemas import (
|
||||
Collection,
|
||||
Notification,
|
||||
ICSRequest,
|
||||
AbfallIORequest,
|
||||
AWMRequest,
|
||||
NotifyRequest,
|
||||
SourceInfo,
|
||||
SourceListResponse,
|
||||
SourceDetailResponse,
|
||||
CollectionsResponse,
|
||||
NotificationsResponse,
|
||||
NotifyResponse,
|
||||
DeleteResponse,
|
||||
SourceParam,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"Collection",
|
||||
"Notification",
|
||||
"ICSRequest",
|
||||
"AbfallIORequest",
|
||||
"AWMRequest",
|
||||
"NotifyRequest",
|
||||
"SourceInfo",
|
||||
"SourceListResponse",
|
||||
"SourceDetailResponse",
|
||||
"CollectionsResponse",
|
||||
"NotificationsResponse",
|
||||
"NotifyResponse",
|
||||
"DeleteResponse",
|
||||
"SourceParam",
|
||||
]
|
||||
Reference in New Issue
Block a user