mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
14 lines
287 B
C#
14 lines
287 B
C#
using System;
|
|
|
|
namespace Cosmos.Build.Common
|
|
{
|
|
public class PropertyChangingEventArgs : EventArgs
|
|
{
|
|
public string PropertyName { get; }
|
|
|
|
public PropertyChangingEventArgs(string propertyName)
|
|
{
|
|
PropertyName = propertyName;
|
|
}
|
|
}
|
|
}
|