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