Files
forkmessager/backend/src/Shared/Knot.Shared.Kernel/IQuery.cs
2026-03-19 22:22:45 +03:00

14 lines
257 B
C#

using MediatR;
namespace Knot.Shared.Kernel;
public interface IQuery<TResponse> : IRequest<Result<TResponse>>
{
}
public interface IQueryHandler<TQuery, TResponse>
: IRequestHandler<TQuery, Result<TResponse>>
where TQuery : IQuery<TResponse>
{
}