11 lines
198 B
Python
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 |