This commit is contained in:
2026-03-23 01:18:08 +03:00
parent 2fe390b068
commit 4f87aa7598
9 changed files with 1128 additions and 5 deletions
+17
View File
@@ -0,0 +1,17 @@
class Account {
final int id;
final String name;
final bool isMain;
final int sortOrder;
final String currency;
final DateTime createdAt;
const Account({
required this.id,
required this.name,
required this.isMain,
required this.sortOrder,
required this.currency,
required this.createdAt,
});
}