mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 02:05:41 +00:00
26 lines
309 B
C#
26 lines
309 B
C#
|
namespace GConf
|
||
|
{
|
||
|
public class NotifyEventArgs : System.EventArgs
|
||
|
{
|
||
|
string key;
|
||
|
object val;
|
||
|
|
||
|
public NotifyEventArgs (string key, object val)
|
||
|
{
|
||
|
this.key = key;
|
||
|
this.val = val;
|
||
|
}
|
||
|
|
||
|
public string Key
|
||
|
{
|
||
|
get { return key; }
|
||
|
}
|
||
|
|
||
|
public object Value
|
||
|
{
|
||
|
get { return val; }
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|