Files
asesidaa_GC-local-server-re…/Application/Interfaces/IRequestWrapper.cs
T
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>
{
}