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.
26 lines
582 B
26 lines
582 B
10 months ago
|
|
||
|
import 'package:huixiang/data/banner.dart';
|
||
|
import 'package:huixiang/generated/json/base/json_field.dart';
|
||
|
import 'package:huixiang/generated/json/brand_data.g.dart';
|
||
|
|
||
|
@JsonSerializable()
|
||
|
class BrandData {
|
||
|
|
||
|
BrandData();
|
||
|
|
||
|
List<BannerData>? bannerList;
|
||
|
String? company;
|
||
|
String? companyDesc;
|
||
|
String? originAvatar;
|
||
|
String? originDesc;
|
||
|
String? originator;
|
||
|
bool? inviteNewShow;
|
||
|
|
||
|
dynamic contents;
|
||
|
dynamic ideals;
|
||
|
|
||
|
factory BrandData.fromJson(Map<String, dynamic> json) =>
|
||
|
$BrandDataFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => $BrandDataToJson(this);
|
||
|
}
|