From bcb54f62796564df2c77faeb17905f12f23c0c90 Mon Sep 17 00:00:00 2001 From: WaseemAbbasi22 Date: Thu, 19 Jun 2025 17:02:03 +0300 Subject: [PATCH] enabledEngineerTimer parameter added --- lib/models/user.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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']; } }