Cosmos/source/Cosmos.Build.Common/PropertyChangedEventArgs.cs
2017-12-24 21:20:10 +00:00

18 lines
465 B
C#

using System;
namespace Cosmos.Build.Common
{
public class PropertyChangedEventArgs : EventArgs
{
public string PropertyName { get; }
public string OldValue { get; }
public string NewValue { get; }
public PropertyChangedEventArgs(string propertyName, string oldValue, string newValue)
{
PropertyName = propertyName;
OldValue = oldValue;
NewValue = newValue;
}
}
}