using MediatR;
namespace Netmash.Application.DataContracts
{
public abstract class Query<TResponse> : IRequest<TResponse>, IBaseRequest { }
}