sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain/NotificationProviders/SmsNotification.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

13 lines
294 B
C#

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();
}
}