Files
LibrarySystem/src/schemas/loan.py
WorldTeacher c3ff3e93ee bugfixes
2024-07-30 16:10:02 +02:00

15 lines
243 B
Python

from .book import Book
from dataclasses import dataclass
@dataclass
class Loan:
id: int
user_id: int
media_id: int
loan_date: str
return_date: str
returned: int
returned_date: str
book: Book
user_name: str