class GetSectionTopics { int? departmentId; String? departmentName; String? projectCode; int? projectDepartmentId; int? projectId; String? projectName; int? sectionId; String? sectionName; int? sectionTopicId; int? tatInHours; int? topicId; String? topicName; GetSectionTopics( {this.departmentId, this.departmentName, this.projectCode, this.projectDepartmentId, this.projectId, this.projectName, this.sectionId, this.sectionName, this.sectionTopicId, this.tatInHours, this.topicId, this.topicName}); GetSectionTopics.fromJson(Map json) { departmentId = json['departmentId']; departmentName = json['departmentName']; projectCode = json['projectCode']; projectDepartmentId = json['projectDepartmentId']; projectId = json['projectId']; projectName = json['projectName']; sectionId = json['sectionId']; sectionName = json['sectionName']; sectionTopicId = json['sectionTopicId']; tatInHours = json['tatInHours']; topicId = json['topicId']; topicName = json['topicName']; } Map toJson() { final Map data = new Map(); data['departmentId'] = this.departmentId; data['departmentName'] = this.departmentName; data['projectCode'] = this.projectCode; data['projectDepartmentId'] = this.projectDepartmentId; data['projectId'] = this.projectId; data['projectName'] = this.projectName; data['sectionId'] = this.sectionId; data['sectionName'] = this.sectionName; data['sectionTopicId'] = this.sectionTopicId; data['tatInHours'] = this.tatInHours; data['topicId'] = this.topicId; data['topicName'] = this.topicName; return data; } }