sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain/NotificationProviders/SmsNotification.cs

14 lines
294 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
using System;
using System.Threading.Tasks;
namespace Sozsoft.Notifications.Domain.NotificationProviders;
public class SmsNotification : INotification
{
public Task Send(string[] NotificationType, string NotificationMessage)
{
throw new NotImplementedException();
}
}