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.

GetRequestQuery.cs 273B

12345678910111213
  1. using MediatR;
  2. namespace Diligent.WebAPI.Host.Mediator.Request.Queries
  3. {
  4. public class GetRequestQuery:IRequest<Data.Entities.Request>
  5. {
  6. public string Id { get; }
  7. public GetRequestQuery(string id)
  8. {
  9. Id = id;
  10. }
  11. }
  12. }