24 lines
577 B
Dart
24 lines
577 B
Dart
class BannerJumpEntity {
|
|
String? id;
|
|
int? position;
|
|
String? url;
|
|
String? title;
|
|
String? startAt;
|
|
String? banner;
|
|
String? endAt;
|
|
int? countdownType;
|
|
|
|
BannerJumpEntity({this.title, this.id, this.position, this.url, this.startAt, this.banner, this.endAt, this.countdownType});
|
|
|
|
BannerJumpEntity.fromJson(dynamic json) {
|
|
id = json['id'];
|
|
position = json['position'];
|
|
url = json['url'];
|
|
title = json['title'];
|
|
startAt = json['startAt'];
|
|
endAt = json['endAt'];
|
|
banner = json['banner'];
|
|
countdownType = json['countdownType'];
|
|
}
|
|
}
|