123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- namespace Admin.Core.Service.Admin.Api.Output
- {
- public class ApiListOutput
- {
-
-
-
- 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 string HttpMethods { get; set; }
-
-
-
- public string Description { get; set; }
-
-
-
- public bool Enabled { get; set; }
- }
- }
|