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
+3 -2
View File
@@ -8,13 +8,14 @@ part 'family_model.g.dart';
class FamilyModel {
const FamilyModel({
required this.id,
required this.budgetId,
required this.code,
required this.createdAt,
required this.updatedAt,
this.hide = false,
});
final int id, budgetId;
final int id;
final String? code;
@JsonKey(fromJson: boolFromJson, toJson: boolToJson)
final bool hide;