2020-02-04 16:51:15 +08:00
|
|
|
using System;
|
2020-08-05 15:29:56 +08:00
|
|
|
namespace SimApi.Communications
|
2020-02-04 16:51:15 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 只有ID的请求
|
|
|
|
|
/// </summary>
|
2020-08-05 15:29:56 +08:00
|
|
|
public class SimApiIdOnlyRequest
|
2020-02-04 16:51:15 +08:00
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 基础分页请求
|
|
|
|
|
/// </summary>
|
2020-08-05 15:29:56 +08:00
|
|
|
public class SimApiBasePageRequest
|
2020-02-04 16:51:15 +08:00
|
|
|
{
|
|
|
|
|
public int Page { get; set; }
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|