16 lines
376 B
Dart
16 lines
376 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'server_bean.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class ServerBean {
|
|
String? HissAiApiUrl;
|
|
String? HissAiPayUrl;
|
|
|
|
ServerBean(this.HissAiApiUrl,this.HissAiPayUrl);
|
|
|
|
factory ServerBean.fromJson(Map<String, dynamic> json) => _$ServerBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$ServerBeanToJson(this);
|
|
}
|