12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Pages
- {
- /// <summary>
- /// 页面消息
- /// </summary>
- internal interface IPageMessage
- {
- /// <summary>
- /// 消息
- /// </summary>
- Action<object> OnMessage { get; set; }
- }
- }
|