17 lines
381 B
C#
17 lines
381 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 QueryAmountRequest: PageRequestBase
|
|
{
|
|
public string UserName { get; set; }
|
|
|
|
public int? Type { get; set; } = 0;
|
|
}
|
|
}
|