9 lines
134 B
Python

from typing import Optional
from pydantic import BaseModel
class SetEntity(BaseModel):
id: Optional[int] = None
title: str