diff --git a/lib/models/user.dart b/lib/models/user.dart index 7f6d3e83..f26ea2dc 100644 --- a/lib/models/user.dart +++ b/lib/models/user.dart @@ -272,8 +272,9 @@ class AssetGroup { int? id; String? name; String? code; + bool ? enabledEngineerTimer; - AssetGroup({this.id, this.name, this.code}); + AssetGroup({this.id, this.name, this.code,this.enabledEngineerTimer}); AssetGroup.fromJson(Map? json) { // Allow json to be null @@ -282,6 +283,7 @@ class AssetGroup { id = json['id']; name = json['name']; code = json['code']; + enabledEngineerTimer = json['enabledEngineerTimer']; } }