11 lines
327 B
C#
11 lines
327 B
C#
namespace HermesSocketLibrary.Socket.Data
|
|
{
|
|
public class HermesLoginMessage
|
|
{
|
|
public required string ApiKey { get; set; }
|
|
public bool WebLogin { get; set; }
|
|
public int MajorVersion { get; set; }
|
|
public int MinorVersion { get; set; }
|
|
public int? PatchVersion { get; set; }
|
|
}
|
|
} |