Started using nullable reference types..
This commit is contained in:
@@ -44,7 +44,7 @@ namespace Umbraco.Cms.Core.Configuration.Models
|
||||
/// <summary>
|
||||
/// Gets or sets a value for the authorization cookie domain.
|
||||
/// </summary>
|
||||
public string AuthCookieDomain { get; set; }
|
||||
public string? AuthCookieDomain { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether the user's email address is to be considered as their username.
|
||||
@@ -60,11 +60,11 @@ namespace Umbraco.Cms.Core.Configuration.Models
|
||||
/// <summary>
|
||||
/// Gets or sets a value for the user password settings.
|
||||
/// </summary>
|
||||
public UserPasswordConfigurationSettings UserPassword { get; set; }
|
||||
public UserPasswordConfigurationSettings? UserPassword { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value for the member password settings.
|
||||
/// </summary>
|
||||
public MemberPasswordConfigurationSettings MemberPassword { get; set; }
|
||||
public MemberPasswordConfigurationSettings? MemberPassword { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user