10 lines
232 B
C#
10 lines
232 B
C#
using FluentResults;
|
|
using MediatR;
|
|
|
|
namespace NexusReader.Application.Abstractions.Messaging;
|
|
|
|
public interface IQueryHandler<TQuery, TResponse> : IRequestHandler<TQuery, Result<TResponse>>
|
|
where TQuery : IQuery<TResponse>
|
|
{
|
|
}
|