Beispiel #1
0
 public ChangedAttributeInformation(string name, ChangedAttributeType type, object newValue, object oldValue)
 {
     Name     = name;
     Type     = type;
     OldValue = oldValue;
     NewValue = newValue;
 }
Beispiel #2
0
 public ChangedAttributeInformation(string name, ChangedAttributeType type)
 {
     Name = name;
     Type = type;
 }