Ryujinx-GtkSharp/gconf/GConf/NotifyEventArgs.cs

26 lines
309 B
C#
Raw Normal View History

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; }
}
}
}