git add .
git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
This commit is contained in:
@@ -1,11 +1,20 @@
|
||||
from pydantic import BaseModel
|
||||
|
||||
|
||||
class ItemCreate(BaseModel):
|
||||
title: str
|
||||
value: int
|
||||
|
||||
|
||||
class ItemUpdate(BaseModel):
|
||||
title: str
|
||||
value: int
|
||||
|
||||
|
||||
class ItemResponse(BaseModel):
|
||||
id: int
|
||||
title: str
|
||||
value: int
|
||||
|
||||
class Config:
|
||||
from_attributes = True
|
||||
Reference in New Issue
Block a user