15 lines
327 B
C#
15 lines
327 B
C#
using Hncore.Infrastructure.WebApi;
|
|
using Hncore.Pass.BaseInfo.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hncore.Pass.BaseInfo.Request.User
|
|
{
|
|
public class QueryUserRequest : PageRequestBase
|
|
{
|
|
public int? All { get; set; } = 1;
|
|
}
|
|
}
|