//TODO : need to delete this // class IncidentAttachments { // num? id; // num? incidentId; // String? attachmentName; // String? attachmentDescription; // // IncidentAttachments({this.id, this.attachmentName, this.incidentId, this.attachmentDescription}); // // IncidentAttachments.fromJson(dynamic json) { // id = json['id']; // incidentId = json['incidentId']; // attachmentName = json['attachmentName']; // attachmentDescription = json['attachmentDescription']; // } // // Map toJson() { // final map = {}; // map['id'] = id; // map['attachmentName'] = attachmentName; // map['incidentId'] = incidentId; // map['attachmentDescription'] = attachmentDescription; // return map; // } // }