You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
639B

  1. class ActionEnd {
  2. int id;
  3. int activityId;
  4. String executeDate;
  5. String description;
  6. ActionEnd({this.id, this.activityId, this.executeDate, this.description});
  7. ActionEnd.fromJson(Map<String, dynamic> json) {
  8. id = json['id'];
  9. activityId = json['activityId'];
  10. executeDate = json['executeDate'];
  11. description = json['description'];
  12. }
  13. Map<String, dynamic> toJson() {
  14. final Map<String, dynamic> data = new Map<String, dynamic>();
  15. data['id'] = this.id;
  16. data['activityId'] = this.activityId;
  17. data['executeDate'] = this.executeDate;
  18. data['description'] = this.description;
  19. return data;
  20. }
  21. }