enabledEngineerTimer parameter added

design_3.0_task_module_new
WaseemAbbasi22 5 months ago
parent cfdf41233c
commit bcb54f6279

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

Loading…
Cancel
Save