Files
ServerMonitor/Backend/MonitorPanel/MonitorPanel.API/Dto/ServerDto.cs
T

11 lines
311 B
C#

namespace MonitorPanel.API.Dto;
public class ServerDto
{
public Guid Id { get; set; }
public string Name { get; set; } = string.Empty;
public bool IsHttps { get; set; }
public string Address { get; set; } = string.Empty;
public string? Path { get; set; }
public int Port { get; set; }
}