mirror of
https://github.com/reconurge/flowsint.git
synced 2026-05-03 01:54:01 -05:00
16 lines
250 B
Python
16 lines
250 B
Python
from .base import ORMBase
|
|
from pydantic import UUID4, BaseModel
|
|
from datetime import datetime
|
|
|
|
|
|
class KeyCreate(BaseModel):
|
|
key: str
|
|
name: str
|
|
|
|
|
|
class KeyRead(ORMBase):
|
|
id: UUID4
|
|
owner_id: UUID4
|
|
name: str
|
|
created_at: datetime
|