12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace Admin.Core.Service.Admin.View.Output
- {
- public class ViewListOutput
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public long? ParentId { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Label { get; set; }
-
-
-
- public string Path { get; set; }
-
-
-
- public bool Enabled { get; set; }
-
-
-
- public string Description { get; set; }
- }
- }
|