zkt25/schemas.py
2026-05-14 07:35:50 +00:00

11 lines
198 B
Python

from pydantic import BaseModel
class NoteCreate(BaseModel):
content: str
class NoteResponse(BaseModel):
id: int
content: str
class Config:
from_attributes = True