Files
XCharts/Runtime/Internal/Misc/IPropertyChanged.cs

13 lines
175 B
C#
Raw Normal View History

2021-12-24 13:33:09 +08:00

2022-02-19 22:37:57 +08:00
namespace XCharts.Runtime
{
/// <summary>
/// 属性变更接口
/// </summary>
public interface IPropertyChanged
{
void OnChanged();
}
}