|
- import 'package:json_annotation/json_annotation.dart';
-
- part 'ActionType.g.dart';
-
- @JsonSerializable()
- class ActionType {
- ActionType();
-
- num id;
- String name;
- String description;
-
- factory ActionType.fromJson(Map<String,dynamic> json) => _$ActionTypeFromJson(json);
- Map<String, dynamic> toJson() => _$ActionTypeToJson(this);
- }
|