Files
manager/lib/core/models/backup_method.dart
T

12 lines
246 B
Dart
Raw Normal View History

2026-07-27 14:42:23 +02:00
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,
}