10 lines
136 B
C#
10 lines
136 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Tapeti
|
|||
|
{
|
|||
|
public interface IExchangeStrategy
|
|||
|
{
|
|||
|
string GetExchange(Type messageType);
|
|||
|
}
|
|||
|
}
|