10 lines
No EOL
195 B
C#
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);
|
|
}
|
|
} |