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

13 lines
No EOL
178 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System;
namespace PhoenixLib.ServiceBus
{
internal interface ISubscribedMessage
{
Type Type { get; }
}
}