Добавил сервис и контроллер для управления серверами

This commit is contained in:
2026-08-09 03:51:08 +03:00
parent 8953348116
commit 02059ac869
11 changed files with 168 additions and 24 deletions
@@ -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; }
}