Exemplo n.º 1
0
 public ChangedAttributeInformation(string name, ChangedAttributeType type, object newValue, object oldValue)
 {
     Name     = name;
     Type     = type;
     OldValue = oldValue;
     NewValue = newValue;
 }
Exemplo n.º 2
0
 public ChangedAttributeInformation(string name, ChangedAttributeType type)
 {
     Name = name;
     Type = type;
 }