1
0
mirror of synced 2025-02-06 06:34:29 +01:00

13 lines
258 B
C#
Raw Normal View History

2023-02-16 16:53:02 +08:00
using MediatR;
2023-02-09 17:25:42 +08:00
namespace Application.Interfaces;
public interface IRequestWrapper<T> : IRequest<ServiceResult<T>>
{
}
public interface IRequestHandlerWrapper<TIn, TOut> : IRequestHandler<TIn, ServiceResult<TOut>> where TIn : IRequestWrapper<TOut>
{
}