1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 23:58:08 -05:00

fix issue with PT6 guid parsing in log file

This commit is contained in:
RaidMax
2020-01-15 18:43:52 -06:00
parent 4b4db2dad0
commit f4ba98221f
10 changed files with 51 additions and 23 deletions

View File

@ -1,4 +1,5 @@
using SharedLibraryCore.RCon;
using System.Globalization;
namespace SharedLibraryCore.Interfaces
{
@ -34,5 +35,10 @@ namespace SharedLibraryCore.Interfaces
/// when executing a command
/// </summary>
bool WaitForResponse { get; set; }
/// <summary>
/// indicates the format expected for parsed guids
/// </summary>
NumberStyles GuidNumberStyle { get; set; }
}
}