|
- import 'package:json_annotation/json_annotation.dart';
-
- part 'Plot.g.dart';
-
- @JsonSerializable()
- class Plot {
- Plot();
-
- num id;
- num times;
- String activityExecuteDate;
- bool isExceedLimit;
-
- factory Plot.fromJson(Map<String, dynamic> json) => _$PlotFromJson(json);
- Map<String, dynamic> toJson() => _$PlotToJson(this);
- }
|