mirror of
https://github.com/chylex/Query.git
synced 2025-04-29 20:34:06 +02:00
9 lines
98 B
C#
9 lines
98 B
C#
namespace Base;
|
|
|
|
public enum MatchConfidence {
|
|
None = 0,
|
|
Low = 1,
|
|
Possible = 2,
|
|
Full = 3
|
|
}
|