Files
Aberwyn/Aberwyn/Models/SetupSettings.cs
Elias Jansson ce9b131454 Setup!
2026-01-24 16:52:53 +01:00

18 lines
534 B
C#

namespace Aberwyn.Models
{
public class SetupSettings
{
public string AdminUsername { get; set; } = "admin";
public string AdminEmail { get; set; } = "admin@localhost";
public string AdminPassword { get; set; } = "Admin123!";
public bool IsConfigured { get; set; }
public string DbHost { get; set; }
public int DbPort { get; set; }
public string DbName { get; set; }
public string DbUser { get; set; }
public string DbPassword { get; set; }
}
}