mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
9 lines
169 B
Python
9 lines
169 B
Python
from datetime import datetime
|
|
|
|
from pydantic import BaseModel as BaseSchema
|
|
|
|
|
|
class Schema(BaseSchema):
|
|
id: int | None = None
|
|
created_at: datetime | None = None
|