server-master/srcs/PhoenixLib.Messaging/Internal/Routing/RoutingInformation.cs
2026-02-10 18:21:30 +01:00

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; }
}
}