12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- using Admin.Core.Model.Admin;
- namespace Admin.Core.Service.Admin.Permission.Input
- {
- public class PermissionAddMenuInput
- {
-
-
-
- public PermissionType Type { get; set; }
-
-
-
- public long ParentId { get; set; }
-
-
-
- public long? ViewId { get; set; }
-
-
-
- public string Path { get; set; }
-
-
-
- public string Label { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool Hidden { get; set; }
-
-
-
-
-
-
-
- public string Icon { get; set; }
-
-
-
- public bool? Closable { get; set; }
-
-
-
- public bool? NewWindow { get; set; }
-
-
-
- public bool? External { get; set; }
- }
- }
|