initial commit

Signed-off-by: Keenan Tims <ktims@gotroot.ca>
This commit is contained in:
2025-04-24 00:28:12 -07:00
commit 0b13bb3692
6 changed files with 1053 additions and 0 deletions

13
model.py Normal file
View File

@@ -0,0 +1,13 @@
from dataclasses import dataclass
from uuid import UUID
from datetime import date
from decimal import Decimal
@dataclass
class Transaction:
account: UUID
date: date
amount: Decimal
payee: str # imported_payee in API
notes: str
imported_id: str