Refactoring UpdateContentCache strategy for generating xml cache upon publishing indepedent of the legacy umbraco.content.Instance class.
This commit is contained in:
@@ -32,8 +32,9 @@ namespace Umbraco.Core.Models
|
||||
Value = value;
|
||||
}
|
||||
|
||||
public Property(PropertyType propertyType, object value, Guid version)
|
||||
public Property(int id, Guid version, PropertyType propertyType, object value)
|
||||
{
|
||||
Id = id;
|
||||
_propertyType = propertyType;
|
||||
_version = version;
|
||||
Value = value;
|
||||
|
||||
Reference in New Issue
Block a user