public BubbleChangeOperation(BubbleChangeType type, object item) { Type = type; Item = item; mProperties = new List <BubbleChangeProperty>(); }
public BubbleChangeOperation(BubbleChangeType type, object item, IEnumerable <BubbleChangeProperty> properties) { Type = type; Item = item; mProperties = new List <BubbleChangeProperty>(properties); }