8 lines
177 B
C#
8 lines
177 B
C#
using BeauFindlay.Shared.Abstractions;
|
|
using MediatR;
|
|
|
|
namespace BeauFindlay.Api.Abstractions.Messaging;
|
|
|
|
public interface IQuery<TResponse> : IRequest<Result<TResponse>>
|
|
{
|
|
} |