You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GetAllRequestsQuery.cs 166B

12345678
  1. using MediatR;
  2. namespace Diligent.WebAPI.Host.Mediator.Request.Queries
  3. {
  4. public class GetAllRequestsQuery:IRequest<List<Data.Entities.Request>>
  5. {
  6. }
  7. }