namespace Umbraco.Core.Models.EntityBase { /// /// An interface that defines the object is tracking property changes and if it is Dirty /// public interface ICanBeDirty { bool IsDirty(); bool IsPropertyDirty(string propName); void ResetDirtyProperties(); } }