using SharedLibraryCore.Interfaces;
namespace IW4MAdmin.Application.Misc
{
///
/// implementation of the IMatchResult
/// used to hold matching results
///
public class ParserMatchResult : IMatchResult
{
///
/// array of matched pattern groups
///
public string[] Values { get; set; }
///
/// indicates if the match succeeded
///
public bool Success { get; set; }
}
}