Fix all build errors

This commit is contained in:
Nikolaj Geisle
2022-03-17 09:44:45 +01:00
parent 34471e35ce
commit f78b62fcb6
32 changed files with 91 additions and 84 deletions

View File

@@ -14,7 +14,7 @@ namespace Umbraco.Cms.Core.Models
public Guid NodeKey { get; set; }
[DataMember(Name = "name")]
public string NodeName { get; set; }
public string? NodeName { get; set; }
[DataMember(Name = "type")]
public string NodeType { get; set; }
@@ -23,16 +23,16 @@ namespace Umbraco.Cms.Core.Models
public Udi NodeUdi => Udi.Create(NodeType, NodeKey);
[DataMember(Name = "icon")]
public string ContentTypeIcon { get; set; }
public string? ContentTypeIcon { get; set; }
[DataMember(Name = "alias")]
public string ContentTypeAlias { get; set; }
public string? ContentTypeAlias { get; set; }
[DataMember(Name = "contentTypeName")]
public string ContentTypeName { get; set; }
public string? ContentTypeName { get; set; }
[DataMember(Name = "relationTypeName")]
public string RelationTypeName { get; set; }
public string? RelationTypeName { get; set; }
[DataMember(Name = "relationTypeIsBidirectional")]
public bool RelationTypeIsBidirectional { get; set; }