e60489715a
Client endpoint - GET & POST implemented
8 lines
119 B
Python
8 lines
119 B
Python
from sqlmodel import SQLModel
|
|
|
|
|
|
class ClientCreate(SQLModel):
|
|
tin_number: int
|
|
names: str
|
|
phone_number: str
|