Небольшое изменение

This commit is contained in:
2026-08-09 03:08:47 +03:00
parent 20ea6645f9
commit 8953348116
2 changed files with 5 additions and 5 deletions
@@ -3,10 +3,10 @@ namespace MonitorPanel.Core.Models;
public class Server(
Guid id,
string name,
bool isHttps,
string address,
string? path,
int port)
string? path = null,
bool isHttps = true,
int port = 443)
{
public readonly Guid Id = id;
public string Name { get; set; } = name;