Redoing the fix for U4-1875

This commit is contained in:
Morten Christensen
2013-03-22 12:13:06 -01:00
parent 9c89a56d8d
commit c5710277a5
5 changed files with 42 additions and 23 deletions

View File

@@ -66,6 +66,15 @@ namespace Umbraco.Core.Models.EntityBase
[DataMember]
public DateTime UpdateDate { get; set; }
/// <summary>
/// Gets or sets the WasCancelled flag, which is used to track
/// whether some action against an entity was cancelled through some event.
/// This only exists so we have a way to check if an event was cancelled through
/// the new api, which also needs to take effect in the legacy api.
/// </summary>
[IgnoreDataMember]
internal bool WasCancelled { get; set; }
/// <summary>
/// Property changed event
/// </summary>