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.

17 lines
398B

  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'ResourceHelper.g.dart';
  3. @JsonSerializable()
  4. class ResourceHelper {
  5. ResourceHelper();
  6. num id;
  7. String name;
  8. String description;
  9. bool isSelected;
  10. factory ResourceHelper.fromJson(Map<String,dynamic> json) => _$ResourceHelperFromJson(json);
  11. Map<String, dynamic> toJson() => _$ResourceHelperToJson(this);
  12. }