You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Global.cs 683 B

2 years ago
2 years ago
2 years ago
1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HKCardManager
  7. {
  8. public class Global
  9. {
  10. /// <summary>
  11. /// 用户信息列表
  12. /// </summary>
  13. public static List<UserInfoModel> UserListDtos { get; set; } = new List<UserInfoModel>();
  14. /// <summary>
  15. /// 分页数据表
  16. /// </summary>
  17. public static List<UserInfoModel> PagUserListDtos { get; set; } = new List<UserInfoModel>();
  18. /// <summary>
  19. /// 机构信息
  20. /// </summary>
  21. public static List<string> OrgList { get; set; } = new List<string>();
  22. }
  23. }