12 lines
297 B
C#
Raw Permalink Normal View History

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