12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NEIntelligentControl2.Models.Pages
- {
- /// <summary>
- /// 页面基础
- /// </summary>
- interface IPageBase
- {
- /// <summary>
- /// 页面切换
- /// </summary>
- void SwitchPage(string name,object value);
- }
- }
|