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
View File
@@ -11,6 +11,8 @@ class User {
required this.name,
required this.familyId,
required this.budgetId,
this.email,
this.username,
this.createdAt,
this.updatedAt,
this.lastActivityAt,
@@ -20,6 +22,7 @@ class User {
final int? id;
final int familyId, budgetId;
final String name;
final String? username, email;
@JsonKey(fromJson: boolFromJson, toJson: boolToJson)
final bool hide;