IW4M-Admin/SharedLibraryCore/Interfaces/IRConParserConfiguration.cs

12 lines
271 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; }
}
}