NG_/Assets/XCharts/Runtime/Internal/Misc/IPropertyChanged.cs

10 lines
169 B
C#
Raw Normal View History

2024-12-13 19:40:05 +08:00
namespace XCharts.Runtime
{
/// <summary>
/// 属性变更接口
/// </summary>
public interface IPropertyChanged
{
void OnChanged();
}
}