123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using Newtonsoft.Json;
- namespace Vo
- {
-
-
-
- public class ApiInfoQueryVo
- {
-
-
-
- public int groupId { get; set; }
-
-
-
- public string apiName { get; set; }
-
-
-
- public string apiKey { get; set; }
-
-
-
- public string apiHost { get; set; }
-
-
-
- public int apiPort { get; set; }
-
-
-
- public string apiRouter { get; set; }
-
-
-
- public int id { get; set; }
- }
- }
|