25 lines
888 B
C#
25 lines
888 B
C#
|
|
namespace Oqtane.Shared
|
|
{
|
|
public class InstallConfig
|
|
{
|
|
public string ConnectionString { get; set; }
|
|
public string DatabaseType { get; set; }
|
|
public string Aliases { get; set; }
|
|
public string TenantName { get; set; }
|
|
public bool IsNewTenant { get; set; }
|
|
public string SiteName { get; set; }
|
|
public string HostUsername { get; set; }
|
|
public string HostPassword { get; set; }
|
|
public string HostEmail { get; set; }
|
|
public string HostName { get; set; }
|
|
public string SiteTemplate { get; set; }
|
|
public string DefaultTheme { get; set; }
|
|
public string DefaultContainer { get; set; }
|
|
public string DefaultAdminContainer { get; set; }
|
|
public string RenderMode { get; set; }
|
|
public string Runtime { get; set; }
|
|
public bool Register { get; set; }
|
|
}
|
|
}
|