mirror of
https://github.com/marcogll/telegram_expenses_controller.git
synced 2026-01-13 21:35:15 +00:00
11 lines
232 B
Python
11 lines
232 B
Python
"""
|
|
Pydantic schemas for structured receipts.
|
|
"""
|
|
from app.schema.base import FinalExpense
|
|
|
|
class Receipt(FinalExpense):
|
|
"""
|
|
A specialized expense model for receipts, could include line items in the future.
|
|
"""
|
|
pass
|