Started implementing setup wizard backend for initial instance configuration. Adjusted ui

This commit is contained in:
2026-01-22 16:24:53 +01:00
parent 248af498a8
commit bb5737bd0b
6 changed files with 257 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
namespace Moonlight.Shared.Http.Requests.Seup;
public class ApplySetupDto
{
public string AdminUsername { get; set; }
public string AdminEmail { get; set; }
public string AdminPassword { get; set; }
}