mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-04 10:18:20 +00:00
8 lines
169 B
Dart
8 lines
169 B
Dart
class ResourceComparisonResult {
|
|
static const Null = 0;
|
|
static const Distributed = 1;
|
|
static const Local = 2;
|
|
static const Same = 3;
|
|
static const Empty = 4;
|
|
}
|