Files
XCharts/Runtime/Internal/Misc/IPropertyChanged.cs
monitor1394 bafe032bb9 3.0
2022-05-22 22:17:38 +08:00

10 lines
169 B
C#

namespace XCharts.Runtime
{
/// <summary>
/// 属性变更接口
/// </summary>
public interface IPropertyChanged
{
void OnChanged();
}
}