mirror of
https://github.com/cyberbread-ru/notepad-server.git
synced 2026-07-14 12:51:04 +03:00
26 lines
366 B
Python
26 lines
366 B
Python
from pydantic import BaseModel, Field
|
|
from datetime import datetime
|
|
from uuid import uuid4
|
|
|
|
|
|
class NoteBase(BaseModel):
|
|
title: str
|
|
content: str
|
|
|
|
|
|
class NoteCreate(NoteBase):
|
|
pass
|
|
|
|
|
|
class NoteUpdate(NoteBase):
|
|
pass
|
|
|
|
|
|
class Note(NoteBase):
|
|
id: str
|
|
created_at: datetime
|
|
updated_at: datetime
|
|
|
|
class Config:
|
|
from_attributes = True
|