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.
20 lines
566 B
20 lines
566 B
import 'package:dynamite/src/models/schema.dart'; |
|
import 'package:dynamite/src/models/security_scheme.dart'; |
|
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'components.g.dart'; |
|
|
|
@JsonSerializable() |
|
class Components { |
|
Components({ |
|
required this.securitySchemes, |
|
required this.schemas, |
|
}); |
|
|
|
factory Components.fromJson(final Map<String, dynamic> json) => _$ComponentsFromJson(json); |
|
Map<String, dynamic> toJson() => _$ComponentsToJson(this); |
|
|
|
final Map<String, SecurityScheme>? securitySchemes; |
|
|
|
final Map<String, Schema>? schemas; |
|
}
|
|
|