1
0
mirror of https://github.com/chylex/Query.git synced 2025-05-23 10:34:06 +02:00
Query/Base/MatchConfidence.cs
2024-08-01 21:35:14 +02:00

9 lines
106 B
C#

namespace Base {
public enum MatchConfidence {
None = 0,
Low = 1,
Possible = 2,
Full = 3
}
}