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.
 
 
 
 
 
 

19 lines
526 B

import 'package:json_annotation/json_annotation.dart';
part 'tenant_package_calculate_details.g.dart';
@JsonSerializable(explicitToJson: true)
class TenantPackageCalculateDetails {
String? totalFee = '';
String? expirationTime = '';
int? duration = 0;
String? packageId = '';
TenantPackageCalculateDetails();
factory TenantPackageCalculateDetails.fromJson(Map<String, dynamic> json) => _$TenantPackageCalculateDetailsFromJson(json);
Map<String, dynamic> toJson() => _$TenantPackageCalculateDetailsToJson(this);
}