16 lines
331 B
C#
16 lines
331 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace OpenAuth.App.Request
|
|||
|
|
{
|
|||
|
|
public class QueryHandleStatusListReq
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public int? is_examine { get; set; }
|
|||
|
|
public string name { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|