erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Domain/NotificationProviders/SmsNotification.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

12 lines
290 B
C#

using System;
using System.Threading.Tasks;
namespace Kurs.Notifications.Domain.NotificationProviders;
public class SmsNotification : INotification
{
public Task Send(string[] NotificationType, string NotificationMessage)
{
throw new NotImplementedException();
}
}