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
437 B
19 lines
437 B
import 'package:json_annotation/json_annotation.dart'; |
|
|
|
part 'app_update.g.dart'; |
|
|
|
@JsonSerializable(explicitToJson: true) |
|
class AppUpdate { |
|
String? appLastVersion = ''; |
|
String? appLastVersionUrl = ''; |
|
String? appLastVersionUp = ''; |
|
String? appLastVersionExplain = ''; |
|
|
|
AppUpdate(); |
|
|
|
factory AppUpdate.fromJson(Map<String, dynamic> json) => _$AppUpdateFromJson(json); |
|
|
|
Map<String, dynamic> toJson() => _$AppUpdateToJson(this); |
|
|
|
|
|
} |