From 55ea40b757d9857c34e62397562502b9962b4a6a Mon Sep 17 00:00:00 2001 From: xRain Date: Sat, 7 May 2022 21:45:12 +0800 Subject: [PATCH] add string id only --- Communications/SimApiBaseRequest.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Communications/SimApiBaseRequest.cs b/Communications/SimApiBaseRequest.cs index 29f0150..b6ec9f0 100644 --- a/Communications/SimApiBaseRequest.cs +++ b/Communications/SimApiBaseRequest.cs @@ -10,6 +10,14 @@ namespace SimApi.Communications public int Id { get; set; } } + /// + /// 只有ID的请求(字符串) + /// + public class SimApiStringIdOnlyRequest + { + public string Id { get; set; } + } + /// /// 动态类型单字段请求 /// @@ -25,6 +33,7 @@ namespace SimApi.Communications public class SimApiBasePageRequest { public int Page { get; set; } + public int Count { get; set; } } } \ No newline at end of file