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
562 B
26 lines
562 B
1 month ago
|
import 'package:huixiang/data/banner.dart';
|
||
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'brand_data.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
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);
|
||
|
}
|