123456789101112131415161718 |
- /************************************************/
- /* */
- /* Copyright (c) 2018 - 2021 monitor1394 */
- /* https://github.com/monitor1394 */
- /* */
- /************************************************/
- namespace XCharts
- {
- /// <summary>
- /// 属性变更接口
- /// </summary>
- public interface IPropertyChanged
- {
- void OnChanged();
- }
- }
|