IW4M-Admin/Application/RconParsers/DynamicRConParserConfiguration.cs

15 lines
468 B
C#
Raw Normal View History

using SharedLibraryCore;
using SharedLibraryCore.Interfaces;
using SharedLibraryCore.RCon;
namespace IW4MAdmin.Application.RconParsers
{
class DynamicRConParserConfiguration : IRConParserConfiguration
{
public CommandPrefix CommandPrefixes { get; set; }
public Server.Game GameName { get; set; }
public ParserRegex Status { get; set; } = new ParserRegex();
2019-02-01 20:49:25 -05:00
public ParserRegex Dvar { get; set; } = new ParserRegex();
}
}