UserAuthorizeInfo.cs 274 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace YiSha.Model.Result.SystemManage
  5. {
  6. public class UserAuthorizeInfo
  7. {
  8. public int? IsSystem { get; set; }
  9. public List<MenuAuthorizeInfo> MenuAuthorize { get; set; }
  10. }
  11. }