mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-10-31 22:17:29 +00:00
22 lines
703 B
Dart
22 lines
703 B
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of 'server_configurations.dart';
|
||
|
|
||
|
// **************************************************************************
|
||
|
// JsonSerializableGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
AutoUpgradeConfigurations _$AutoUpgradeConfigurationsFromJson(
|
||
|
Map<String, dynamic> json) =>
|
||
|
AutoUpgradeConfigurations(
|
||
|
enable: json['enable'] as bool,
|
||
|
allowReboot: json['allowReboot'] as bool,
|
||
|
);
|
||
|
|
||
|
Map<String, dynamic> _$AutoUpgradeConfigurationsToJson(
|
||
|
AutoUpgradeConfigurations instance) =>
|
||
|
<String, dynamic>{
|
||
|
'enable': instance.enable,
|
||
|
'allowReboot': instance.allowReboot,
|
||
|
};
|