Interface IQuery<TQueryResponse>
Represents a MediatR Query. These extend the MediatR.IRequest to allow code by contract constraints downstream.
public interface IQuery<out TQueryResponse> : IRequest<TQueryResponse>, IBaseRequest
Type Parameters
TQueryResponse
Response Type of the query.