LANCommander/LANCommander.SDK/Models/Manifest/ServerConsole.cs

16 lines
370 B
C#
Raw Permalink Normal View History

using LANCommander.SDK.Enums;
namespace LANCommander.SDK.Models.Manifest
{
public class ServerConsole : BaseModel
{
public string Name { get; set; } = "";
public ServerConsoleType Type { get; set; }
public string Path { get; set; } = "";
public string Host { get; set; } = "";
public int? Port { get; set; }
}
}