using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
namespace NEIntelligentControl2.Models.Pages
{
///
/// 页面动作
///
public interface IPageAction
{
///
/// 获取页面
///
/// 页面名称
Page this[string name] { get; }
}
}