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

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