11 lines
423 B
C#
11 lines
423 B
C#
using Kreta.Core.MessageBroker;
|
|
using Kreta.Core.MessageBroker.Contract.MobileNotification;
|
|
|
|
namespace Kreta.MessageBroker.ClientFactory
|
|
{
|
|
internal class MobileNotificationJsonMessageClientFactory : JsonMessageClientFactory<MobileNotificationMessage>
|
|
{
|
|
public MobileNotificationJsonMessageClientFactory(IMessageClientFactory<string> messageClientFactory) : base(messageClientFactory)
|
|
{ }
|
|
}
|
|
}
|