mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-02 23:17:17 +00:00
22 lines
647 B
Dart
22 lines
647 B
Dart
import 'package:equatable/equatable.dart';
|
|
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'server_configurations.g.dart';
|
|
|
|
@JsonSerializable(createToJson: true)
|
|
class AutoUpgradeConfigurations extends Equatable {
|
|
factory AutoUpgradeConfigurations.fromJson(final Map<String, dynamic> json) =>
|
|
_$AutoUpgradeConfigurationsFromJson(json);
|
|
const AutoUpgradeConfigurations({
|
|
required this.enable,
|
|
required this.allowReboot,
|
|
});
|
|
|
|
final bool enable;
|
|
final bool allowReboot;
|
|
Map<String, dynamic> toJson() => _$AutoUpgradeConfigurationsToJson(this);
|
|
|
|
@override
|
|
List<Object?> get props => [enable, allowReboot];
|
|
}
|