11 lines
No EOL
211 B
C#
11 lines
No EOL
211 B
C#
using System;
|
|
|
|
namespace PhoenixLib.ServiceBus.Routing
|
|
{
|
|
public interface IRoutingInformation
|
|
{
|
|
Type ObjectType { get; }
|
|
string Topic { get; }
|
|
string EventType { get; }
|
|
}
|
|
} |