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.

19 lines
438B

  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'OtherAction.g.dart';
  3. @JsonSerializable()
  4. class OtherAction {
  5. OtherAction();
  6. num id;
  7. num activityId;
  8. String executeDate;
  9. String description;
  10. String activityTypeName;
  11. String workerName;
  12. factory OtherAction.fromJson(Map<String,dynamic> json) => _$OtherActionFromJson(json);
  13. Map<String, dynamic> toJson() => _$OtherActionToJson(this);
  14. }