1
0
mirror of synced 2025-02-07 15:01:23 +01:00
2023-02-09 17:25:42 +08:00

14 lines
291 B
C#

using Application.Common.Models;
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>
{
}