1
0
mirror of synced 2024-07-01 08:17:39 +00:00
Tapeti/Tapeti.Transient/ITransientPublisher.cs

9 lines
197 B
C#
Raw Normal View History

using System.Threading.Tasks;
namespace Tapeti.Transient
{
public interface ITransientPublisher
{
Task<TResponse> RequestResponse<TRequest, TResponse>(TRequest request);
}
}