Feat: Fügt Entities für account, transaction und recurring_transaction hinzu

This commit is contained in:
2025-12-22 01:46:47 +01:00
parent c4225759d8
commit 34de70ab66
4 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/// Ein Enum, das bestimmte Zeitspannen darstellt
enum TimeFrameEnum {
/// Für eine tägliche Zeitspanne
daily,
/// Für eine wöchentliche Zeitspanne
weekly,
/// Für eine monatliche Zeitspanne
monthly,
/// Für eine jährliche Zeitspanne
yearly,
}