Modified Login Ack message to provide more info.

This commit is contained in:
Tom
2024-08-10 19:37:33 +00:00
parent 9d838e66ad
commit 65522567a5
2 changed files with 13 additions and 0 deletions

View File

@ -3,5 +3,9 @@ namespace HermesSocketLibrary.Socket.Data
public class HermesLoginMessage
{
public string ApiKey { get; set; }
public string Password { get; set; }
public bool WebLogin { get; set; }
public int? MajorVersion { get; set; }
public int? MinorVersion { get; set; }
}
}