mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
31 lines
615 B
C#
31 lines
615 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace RainmeterStudio.Model
|
|
{
|
|
public class Property
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
private object _value;
|
|
public object Value
|
|
{
|
|
get
|
|
{
|
|
return _value;
|
|
}
|
|
set
|
|
{
|
|
_value = value;
|
|
|
|
if (ValueChanged != null)
|
|
ValueChanged(this, new EventArgs());
|
|
}
|
|
}
|
|
|
|
public event EventHandler ValueChanged;
|
|
}
|
|
}
|