IW4M-Admin/SharedLibraryCore/Interfaces/IMatchResult.cs
2022-01-26 15:26:25 -06:00

18 lines
435 B
C#

namespace SharedLibraryCore.Interfaces
{
/// <summary>
/// represents a pattern match result
/// </summary>
public interface IMatchResult
{
/// <summary>
/// array of matched pattern groups
/// </summary>
string[] Values { get; set; }
/// <summary>
/// indicates if the match succeeded
/// </summary>
bool Success { get; set; }
}
}