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.
29 lines
648 B
29 lines
648 B
1 month ago
|
import 'package:huixiang/data/act_product.dart';
|
||
|
import 'package:huixiang/data/act_record_and_join_dto_list.dart';
|
||
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'activity_details.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class ActivityDetails {
|
||
|
|
||
|
String? endTime;
|
||
|
ActProduct? actProduct;
|
||
|
List<ActRecordAndJoinlDTOList>? actRecordAndJoinlDTOList;
|
||
|
|
||
|
ActivityDetails({
|
||
|
this.endTime,
|
||
|
this.actProduct,
|
||
|
this.actRecordAndJoinlDTOList,
|
||
|
});
|
||
|
|
||
|
factory ActivityDetails.fromJson(Map<String, dynamic> json) => _$ActivityDetailsFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$ActivityDetailsToJson(this);
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|