class SiteContactInfoModel { int? id; int? assetGroupId; int? siteId; String? siteName; String? phoneNumber; SiteContactInfoModel({this.id, this.assetGroupId, this.siteId, this.siteName, this.phoneNumber}); SiteContactInfoModel.fromJson(Map json) { id = json['id']; assetGroupId = json['assetGroupId']; siteId = json['siteId']; siteName = json['siteName']; phoneNumber = json['phoneNumber']; } Map toJson() { final Map data = new Map(); data['id'] = this.id; data['assetGroupId'] = this.assetGroupId; data['siteId'] = this.siteId; data['siteName'] = this.siteName; data['phoneNumber'] = this.phoneNumber; return data; } }