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.
23 lines
469 B
23 lines
469 B
1 month ago
|
import 'package:json_annotation/json_annotation.dart';
|
||
|
|
||
|
part 'day_flow.g.dart';
|
||
|
|
||
|
@JsonSerializable(explicitToJson: true)
|
||
|
class DayFlow {
|
||
|
dynamic localDate;
|
||
|
String? localDateTime = '';
|
||
|
int? count = 0;
|
||
|
String? amount = '';
|
||
|
String? refundAmount = '';
|
||
|
String? storeName = '';
|
||
|
dynamic nickname;
|
||
|
dynamic phone;
|
||
|
|
||
|
DayFlow();
|
||
|
|
||
|
factory DayFlow.fromJson(Map<String, dynamic> json) => _$DayFlowFromJson(json);
|
||
|
|
||
|
Map<String, dynamic> toJson() => _$DayFlowToJson(this);
|
||
|
|
||
|
|
||
|
}
|