Class MoveOrCopy
A model representing a model for moving or copying
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Models.ContentEditing
Assembly: Umbraco.Core.dll
Syntax
public class MoveOrCopy : object
Properties
View SourceId
The id of the node to move or copy
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System. |
ParentId
The Id of the node to move or copy to
Declaration
public int ParentId { get; set; }
Property Value
Type | Description |
---|---|
System. |
Recursive
Boolean indicating whether copying the object should be recursive
Declaration
public bool Recursive { get; set; }
Property Value
Type | Description |
---|---|
System. |
RelateToOriginal
Boolean indicating whether copying the object should create a relation to it's original
Declaration
public bool RelateToOriginal { get; set; }
Property Value
Type | Description |
---|---|
System. |