1
0
mirror of synced 2024-06-30 15:57:39 +00:00
Tapeti/IExchangeStrategy.cs

10 lines
136 B
C#
Raw Normal View History

using System;
namespace Tapeti
{
public interface IExchangeStrategy
{
string GetExchange(Type messageType);
}
}