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

10 lines
No EOL
195 B
C#

using System;
namespace PhoenixLib.ServiceBus
{
internal class GenericSubscribedMessage<T> : ISubscribedMessage
where T : IMessage
{
public Type Type => typeof(T);
}
}