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