mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-04 10:18:20 +00:00
7 lines
145 B
Dart
7 lines
145 B
Dart
class RecordComparisonResult {
|
|
static const Null = 0;
|
|
static const Record = 1;
|
|
static const RecordSameType = 2;
|
|
static const Same = 3;
|
|
}
|