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