mirror of
https://github.com/ryzij/ServerMonitor.git
synced 2026-09-18 19:23:22 +00:00
Добавил сервис и контроллер для управления серверами
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user