10 lines
143 B
Python

from pydantic import BaseModel
class UniversityRead(BaseModel):
id: int
title: str
class Config:
from_attributes = True