9 lines
165 B
C#
9 lines
165 B
C#
using FluentResults;
|
|
using MediatR;
|
|
|
|
namespace NexusReader.Application.Abstractions.Messaging;
|
|
|
|
public interface IQuery<TResponse> : IRequest<Result<TResponse>>
|
|
{
|
|
}
|