mirror of
https://github.com/koloideal/Casha.git
synced 2026-06-10 10:25:28 +03:00
update
This commit is contained in:
@@ -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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user