1
0
mirror of synced 2025-01-18 22:24:06 +01:00
2023-02-16 16:53:02 +08:00

13 lines
258 B
C#

using MediatR;
namespace Application.Interfaces;
public interface IRequestWrapper<T> : IRequest<ServiceResult<T>>
{
}
public interface IRequestHandlerWrapper<TIn, TOut> : IRequestHandler<TIn, ServiceResult<TOut>> where TIn : IRequestWrapper<TOut>
{
}