using SharedLibraryCore.RCon; namespace SharedLibraryCore.Interfaces { public interface IRConParserConfiguration { /// /// stores the command format for console commands /// CommandPrefix CommandPrefixes { get; set; } /// /// optionally stores the game name type /// Server.Game GameName { get; set; } /// /// stores the regex info for parsing get status response /// ParserRegex Status { get; set; } /// /// stores the regex info for parsing get DVAR responses /// ParserRegex Dvar { get; set; } } }