IW4M-Admin/SharedLibraryCore/QueryHelper/ClientPaginationRequest.cs

9 lines
192 B
C#
Raw Normal View History

using SharedLibraryCore.Dtos;
namespace SharedLibraryCore.QueryHelper
{
public class ClientPaginationRequest : PaginationRequest
{
public int ClientId { get; set; }
}
2022-01-26 11:32:16 -05:00
}