IW4M-Admin/SharedLibraryCore/Interfaces/IRConParserConfiguration.cs

13 lines
310 B
C#
Raw Normal View History

using SharedLibraryCore.RCon;
namespace SharedLibraryCore.Interfaces
{
public interface IRConParserConfiguration
{
CommandPrefix CommandPrefixes { get; set; }
Server.Game GameName { get; set; }
ParserRegex Status { get; set; }
2019-02-01 20:49:25 -05:00
ParserRegex Dvar { get; set; }
}
}