configs_request.dart 280 B

12345678910111213
  1. import 'package:json_annotation/json_annotation.dart';
  2. part 'configs_request.g.dart';
  3. @JsonSerializable()
  4. class ConfigsRequest {
  5. @JsonKey(name: "ids")
  6. List<int> ids;
  7. ConfigsRequest({required this.ids});
  8. Map<String, dynamic> toJson() => _$ConfigsRequestToJson(this);
  9. }