Files
2026-05-20 12:01:19 +08:00

18 lines
322 B
C#

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