Working auth and added shared notes
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user