12 lines
246 B
Dart
12 lines
246 B
Dart
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,
|
|
}
|