fix(admin): fixed various issues lmao idk it was a ballache and is probably quite shit. sorry to future me

This commit is contained in:
Fishandchips321 2026-03-05 19:09:26 +00:00
parent 56ea7fb7f0
commit 2cbbc00489
29 changed files with 382 additions and 131 deletions

View file

@ -0,0 +1,8 @@
namespace JellyGlass.Models.ControllerBodies.Servers;
public class UpdateServerDTO
{
public required string Owner { get; set; }
public required string Url { get; set; }
public required string ApiToken { get; set; }
}