mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-15 12:40:12 +00:00
12 lines
166 B
C#
12 lines
166 B
C#
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// 属性变更接口
|
|
/// </summary>
|
|
public interface IPropertyChanged
|
|
{
|
|
void OnChanged();
|
|
}
|
|
}
|
|
|