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