mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 14:09:50 +00:00
15 lines
428 B
Dart
15 lines
428 B
Dart
enum SyncType { disabled, unobtrusive, aggressive }
|
|
|
|
class SyncMode {
|
|
SyncMode(this.name, this.type, this.frequency);
|
|
|
|
final String name;
|
|
final SyncType type;
|
|
final Duration frequency;
|
|
|
|
static final all = [
|
|
SyncMode("Disabled", SyncType.disabled, Duration.zero),
|
|
SyncMode("Unobtrusive", SyncType.unobtrusive, Duration(hours: 12)),
|
|
SyncMode("Aggressive", SyncType.aggressive, Duration(minutes: 15)),
|
|
];
|
|
}
|