2019-01-26 21:33:37 -05:00
|
|
|
|
using SharedLibraryCore.RCon;
|
|
|
|
|
|
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IRConParserConfiguration
|
|
|
|
|
{
|
|
|
|
|
CommandPrefix CommandPrefixes { get; set; }
|
|
|
|
|
Server.Game GameName { get; set; }
|
2019-01-27 19:41:54 -05:00
|
|
|
|
ParserRegex Status { get; set; }
|
2019-02-01 20:49:25 -05:00
|
|
|
|
ParserRegex Dvar { get; set; }
|
2019-01-26 21:33:37 -05:00
|
|
|
|
}
|
|
|
|
|
}
|