OpenAuth.Net/OpenAuth.App/Request/QueryCategoriesReq.cs
2017-11-29 21:32:55 +08:00

17 lines
388 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace OpenAuth.App.Request
{
public class QueryCategoriesReq : PageReq
{
/// <summary>
/// 是否审核all全部 true:已审核false未审核
/// </summary>
public string Checked { get; set; }
/// <summary>
/// TypeID
/// </summary>
public string TypeId { get; set; }
}
}