import 'package:json_annotation/json_annotation.dart';
/// Mirrors `models.BackupMethod` in `nodemaster/models/types.go`.
enum BackupMethod {
@JsonValue('rsync')
rsync,
@JsonValue('restic')
restic,
@JsonValue('external')
external,
}