You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
290 B
C#

namespace OpenAuth.App.Request
{
/// <summary>
/// 请求参数中只有Id
/// </summary>
/// <typeparam name="T"></typeparam>
public class IdRequest<T>
{
/// <summary>
/// 操作Id
/// </summary>
public T Id { get; set; }
}
}