12345678910111213141516171819202122232425 |
- namespace Admin.Core.Service.Admin.View.Input
- {
- public class ViewSyncDto
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string Label { get; set; }
-
-
-
- public string Path { get; set; }
-
-
-
-
- public string ParentPath { get; set; }
- }
- }
|