mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 13:30:10 +00:00
19 lines
473 B
C#
19 lines
473 B
C#
/************************************************/
|
|
/* */
|
|
/* Copyright (c) 2018 - 2021 monitor1394 */
|
|
/* https://github.com/monitor1394 */
|
|
/* */
|
|
/************************************************/
|
|
|
|
namespace XCharts
|
|
{
|
|
/// <summary>
|
|
/// 属性变更接口
|
|
/// </summary>
|
|
public interface IPropertyChanged
|
|
{
|
|
void OnChanged();
|
|
}
|
|
}
|
|
|