diff --git a/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs b/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs index 45abc39268..b8c95aca12 100644 --- a/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs +++ b/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs @@ -94,6 +94,23 @@ namespace Umbraco.Cms.Core.Configuration.Models /// the Run level. /// public bool InstallUnattended { get; set; } = false; + + /// + /// Gets or sets a value to use for creating a user with a name for Unattended Installs + /// + public string UnattendedUserName { get; set; } = string.Empty; + + /// + /// Gets or sets a value to use for creating a user with an email for Unattended Installs + /// + public string UnattendedUserEmail { get; set; } = string.Empty; + + /// + /// Gets or sets a value to use for creating a user with a password for Unattended Installs + /// + public string UnattendedUserPassword { get; set; } = string.Empty; + + /// /// Gets or sets a value indicating whether to disable the election for a single server. ///