12345678910111213141516171819202122232425262728293031 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using YiSha.Util;
- namespace YiSha.Model.Result
- {
- public class MenuAuthorizeInfo
- {
-
- public int MenuId { get; set; }
-
-
-
-
- public int AuthorizeId { get; set; }
-
-
-
- public int? AuthorizeType { get; set; }
-
-
-
- public string Authorize { get; set; }
- }
- }
|