Undoing the private set on Parent Id as it should be possible to change
This commit is contained in:
@@ -84,7 +84,7 @@ namespace Umbraco.Core.Models
|
||||
public int ParentId
|
||||
{
|
||||
get { return _parentId; }
|
||||
private set
|
||||
set
|
||||
{
|
||||
_parentId = value;
|
||||
OnPropertyChanged(ParentIdSelector);
|
||||
|
||||
@@ -12,7 +12,7 @@ namespace Umbraco.Core.Models
|
||||
/// <summary>
|
||||
/// Gets or Sets the Id of the Parent for the Content
|
||||
/// </summary>
|
||||
int ParentId { get; }
|
||||
int ParentId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or Sets the Name of the Content
|
||||
|
||||
Reference in New Issue
Block a user