mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
18 lines
465 B
C#
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;
|
|
}
|
|
}
|
|
}
|