erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Domain/NotificationProviders/SmsNotification.cs

13 lines
290 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
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();
}
}