This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
chovy-gm/Flobbster.Windows.Forms/PropertySpecEventArgs.cs
SilicaAndPina ad02725efa Add SRC
2019-08-30 20:14:15 +12:00

38 lines
462 B
C#

using System;
namespace Flobbster.Windows.Forms
{
public class PropertySpecEventArgs : EventArgs
{
private PropertySpec property;
private object val;
public PropertySpec Property
{
get
{
return property;
}
}
public object Value
{
get
{
return val;
}
set
{
val = value;
}
}
public PropertySpecEventArgs(PropertySpec property, object val)
{
this.property = property;
this.val = val;
}
}
}