地铁二期项目正式开始

IndexCenterModel.cs 480B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Data;
  4. using System.Linq;
  5. using System.Web;
  6. namespace YTSoft.BaseCallCenter.MVCWeb.Models
  7. {
  8. public class IndexCenterModel
  9. {
  10. /// <summary>
  11. /// 用户信息
  12. /// </summary>
  13. public YTSoft.BaseCallCenter.Model.T_Sys_UserAccount UserAccountModel { get; set; }
  14. /// <summary>
  15. /// 角色名称
  16. /// </summary>
  17. public string RoleName { get; set; }
  18. }
  19. }