Add MonitorPanel.DataAccess

This commit is contained in:
2026-07-08 03:13:21 +03:00
parent 7c4d557dc4
commit 08aa1bbf90
8 changed files with 106 additions and 0 deletions
@@ -0,0 +1,14 @@
using System.ComponentModel.DataAnnotations;
namespace MonitorPanel.DataAccess.Entities;
public class ServerEntity
{
public Guid Id { get; set; }
public string Name { get; set; } = null!;
public bool IsHttps { get; set; }
[Required]
public string Address { get; set; } = null!;
string? Path { get; set; }
[Required]
public int Port { get; set; }
}