18 lines
No EOL
440 B
C#
18 lines
No EOL
440 B
C#
using System;
|
|
|
|
namespace PhoenixLib.ServiceBus.Routing
|
|
{
|
|
public class RoutingInformation : IRoutingInformation
|
|
{
|
|
public RoutingInformation(Type type, string topic, string eventType)
|
|
{
|
|
ObjectType = type;
|
|
Topic = topic;
|
|
EventType = eventType;
|
|
}
|
|
|
|
public Type ObjectType { get; }
|
|
public string Topic { get; }
|
|
public string EventType { get; }
|
|
}
|
|
} |