Исправил модификатор доступа Path

This commit is contained in:
2026-07-08 19:29:12 +03:00
parent 08aa1bbf90
commit 9db0542d6b
@@ -8,7 +8,7 @@ public class ServerEntity
public bool IsHttps { get; set; } public bool IsHttps { get; set; }
[Required] [Required]
public string Address { get; set; } = null!; public string Address { get; set; } = null!;
string? Path { get; set; } public string? Path { get; set; }
[Required] [Required]
public int Port { get; set; } public int Port { get; set; }
} }