mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 12:24:59 +00:00
23 lines
464 B
C#
23 lines
464 B
C#
using Newtonsoft.Json;
|
|
|
|
|
|
namespace PepperDash.Essentials.WebSocketServer
|
|
{
|
|
/// <summary>
|
|
/// Represents a Version
|
|
/// </summary>
|
|
public class Version
|
|
{
|
|
[JsonProperty("serverVersion")]
|
|
public string ServerVersion { get; set; }
|
|
|
|
[JsonProperty("serverIsRunningOnProcessorHardware")]
|
|
public bool ServerIsRunningOnProcessorHardware { get; private set; }
|
|
|
|
public Version()
|
|
{
|
|
ServerIsRunningOnProcessorHardware = true;
|
|
}
|
|
}
|
|
}
|