Got index server list working

This commit is contained in:
Fishandchips321 2026-02-22 19:30:12 +00:00
parent 36d99b1e35
commit 271cf1f407
19 changed files with 445 additions and 67 deletions

View file

@ -0,0 +1,17 @@
namespace JellyGlass.Models;
public class ServerDTO
{
public ServerDTO() { }
public ServerDTO(Server s)
{
Owner = s.Owner;
Url = s.Url;
Id = s.Id;
}
public string Owner { get; set; } = string.Empty;
public string Url { get; set; } = string.Empty;
public string Id { get; set; } = string.Empty;
}