@ -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<String, dynamic>? json) {
// Allow json to be null
@ -282,6 +283,7 @@ class AssetGroup {
id = json['id'];
name = json['name'];
code = json['code'];
enabledEngineerTimer = json['enabledEngineerTimer'];
}