Files
XCharts/Runtime/Internal/Misc/IPropertyChanged.cs
2022-01-05 21:40:48 +08:00

13 lines
167 B
C#

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