1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Application/Interfaces/IRequestWrapper.cs

13 lines
258 B
C#
Raw Normal View History

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