18 lines
428 B
Dart
18 lines
428 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'equity_advert_bean.g.dart';
|
|
|
|
@JsonSerializable()
|
|
class EquityAdvertBean {
|
|
bool? IsDisplay;
|
|
int? WatchNum;
|
|
int? TotalNum;
|
|
|
|
|
|
EquityAdvertBean(this.IsDisplay, this.WatchNum, this.TotalNum);
|
|
|
|
factory EquityAdvertBean.fromJson(Map<String, dynamic> json) => _$EquityAdvertBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$EquityAdvertBeanToJson(this);
|
|
}
|