selected_model.dart 255 B

1234567891011
  1. class FSelectModel {
  2. FSelectModel({required this.name, required this.code});
  3. final String name;
  4. final String code;
  5. }
  6. class FMutiSelectModel {
  7. FMutiSelectModel({required this.name, required this.code});
  8. final String name;
  9. final String code;
  10. }