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

9 lines
No EOL
200 B
C#

using System;
namespace PhoenixLib.ServiceBus.Routing
{
public interface IRoutingInformationFactory
{
IRoutingInformation Create(Type type, string topic, string eventType);
}
}