BunyMuny/RuleMatch.cs

10 lines
96 B
C#
Raw Normal View History

2020-09-26 13:16:54 +00:00
namespace BunyMuny {
public enum RuleMatch {
Exact,
Start,
End,
Regex,
Contains
}
}