finai/backend/app/schemas/job_title.py

9 lines
134 B
Python

from pydantic import BaseModel
class JobTitleResponse(BaseModel):
id: int
name: str
sort_order: int
is_active: bool