1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- using System.Collections.Generic;
- namespace GxPress.Result.SystemRole
- {
- public class SystemRoleResult
- {
- public Entity.SystemRole.SystemRole SystemRole { get; set; }
- public List<MenuInResult> MenuInResult { get; set; }
- }
- public class MenuInResult
- {
-
-
-
-
- public int Id { get; set; }
-
-
-
-
- public int ParentId { get; set; }
-
-
-
-
- public string Title { get; set; }
-
-
-
-
- public string Name { get; set; }
-
-
-
-
- public string Icon { get; set; }
-
-
-
-
- public List<MenuInResult> Children { get; set; }
-
-
-
-
- public string Path { get; set; }
- }
- }
|