using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 主界面多表联查类
///
public class MailPage
{
string modelName;
///
/// 模块名称
///
public string ModelName
{
get { return modelName; }
set { modelName = value; }
}
string showName;
///
/// 主界面显示名称
///
public string ShowName
{
get { return showName; }
set { showName = value; }
}
string pageUrl;
///
/// 页面Url名称
///
public string PageUrl
{
get { return pageUrl; }
set { pageUrl = value; }
}
//string ico;
/////
///// 图标
/////
//public string Ico
//{
// get { return ico; }
// set { ico = value; }
//}
//int width;
/////
///// 页面宽度
/////
//public int Width
//{
// get { return width; }
// set { width = value; }
//}
//int height;
/////
///// 页面高度
/////
//public int Height
//{
// get { return height; }
// set { height = value; }
//}
int uid;
///
/// 用户编号
///
public int Uid
{
get { return uid; }
set { uid = value; }
}
string mName;
///
/// 模块文件夹名称
///
public string MName
{
get { return mName; }
set { mName = value; }
}
}
}