psb_hack/api/app/domain/entities/lesson_files.py

12 lines
184 B
Python

from pydantic import BaseModel
class ReadLessonFile(BaseModel):
id: int
filename: str
file_path: str
lesson_id: int
class Config:
from_attributes = True