1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using System.Collections.Generic;
- namespace GxPress.Request.Menu
- {
-
-
-
- public class MenuInRequest
- {
-
-
-
-
- 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<MenuInRequest> Children { get; set; }
-
-
-
-
- public string Path { get; set; }
-
-
-
-
- public bool IsUp { get; set; }
- }
- }
|