IW4M-Admin/WebfrontCore/QueryHelpers/Models/BanInfoRequest.cs

12 lines
297 B
C#
Raw Permalink Normal View History

2022-06-02 17:48:47 -04:00
using SharedLibraryCore.Dtos;
namespace WebfrontCore.QueryHelpers.Models;
public class BanInfoRequest : PaginationRequest
{
public string ClientName { get; set; }
2022-06-05 17:27:56 -04:00
public string ClientGuid { get; set; }
public int? ClientId { get; set; }
public string ClientIP { get; set; }
2022-06-02 17:48:47 -04:00
}