1
0
mirror of https://github.com/chylex/Query.git synced 2025-08-21 03:54:02 +02:00
Files
AppCalc
AppConv
AppMeme
AppWindows
Base
Properties
Utils
Base.csproj
Command.cs
CommandEventArgs.cs
CommandException.cs
IApp.cs
MatchConfidence.cs
Query
.gitignore
Query.sln
icon.ico
Query/Base/MatchConfidence.cs
2024-07-29 16:57:33 +02:00

9 lines
134 B
C#

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