18 lines
534 B
C#
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; }
|
|
}
|
|
|
|
|
|
}
|