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

10 lines
169 B
C#
Raw Normal View History

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