using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
namespace YTSoft.BaseCallCenter.MVCWeb.Models
{
public class IndexModel
{
///
/// 用户信息
///
public YTSoft.BaseCallCenter.Model.T_Sys_UserAccount UserAccountModel { get; set; }
///
/// CTI服务器IP
///
public string CTIserverIP { get; set; }
///
/// CTI服务器Port
///
public string CTIserverPort { get; set; }
///
/// 是否坐席登录
///
public string IsSeat { get; set; }
///
/// 菜单列表
///
public List MenuModelList
{ get; set; }
}
}