namespace ChillConnect { public class ChangeValue { public T oldValue; public T newValue; public ChangeValue() { } public ChangeValue(T oldValue, T newValue) { this.oldValue = oldValue; this.newValue = newValue; } } }