Use nullability on the rest of core
This commit is contained in:
@@ -11,11 +11,11 @@ namespace Umbraco.Cms.Core.Models
|
||||
{
|
||||
[Required]
|
||||
[DataMember(Name = "code", IsRequired = true)]
|
||||
public string Code { get; set; }
|
||||
public string? Code { get; set; }
|
||||
|
||||
[Required]
|
||||
[DataMember(Name = "provider", IsRequired = true)]
|
||||
public string Provider { get; set; }
|
||||
public string? Provider { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Flag indicating whether the sign-in cookie should persist after the browser is closed.
|
||||
|
||||
Reference in New Issue
Block a user