Class RelationDisplay
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Models.ContentEditing
Assembly: Umbraco.Core.dll
Syntax
[DataContract(Name = "relation", Namespace = "")]
public class RelationDisplay
Properties
View SourceChildId
Gets or sets the Child Id of the Relation (Destination).
Declaration
[DataMember(Name = "childId")]
public int ChildId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ChildName
Gets or sets the Child Name of the relation (Destination).
Declaration
[DataMember(Name = "childName")]
public string ChildName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Comment
Gets or sets a comment for the Relation.
Declaration
[DataMember(Name = "comment")]
public string Comment { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CreateDate
Gets or sets the date when the Relation was created.
Declaration
[DataMember(Name = "createDate")]
public DateTime CreateDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
ParentId
Gets or sets the Parent Id of the Relation (Source).
Declaration
[DataMember(Name = "parentId")]
public int ParentId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ParentName
Gets or sets the Parent Name of the relation (Source).
Declaration
[DataMember(Name = "parentName")]
public string ParentName { get; set; }
Property Value
Type | Description |
---|---|
System.String |