Working auth and added shared notes

This commit is contained in:
Nathan Anderson
2023-07-27 01:40:26 -06:00
parent 18aad2b3d5
commit 83393807c7
68 changed files with 2138 additions and 661 deletions
+2
View File
@@ -8,6 +8,7 @@ part 'budget.g.dart';
class Budget {
const Budget({
this.id,
required this.familyId,
required this.name,
required this.createdAt,
required this.updatedAt,
@@ -15,6 +16,7 @@ class Budget {
});
final int? id;
final int familyId;
final String name;
@JsonKey(fromJson: boolFromJson, toJson: boolToJson)