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

14 lines
290 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
using System.Threading.Tasks;
2025-11-11 19:49:52 +00:00
namespace Erp.Notifications.Domain.NotificationProviders;
2025-05-06 06:45:49 +00:00
public class SmsNotification : INotification
{
public Task Send(string[] NotificationType, string NotificationMessage)
{
throw new NotImplementedException();
}
}
2025-11-11 19:49:52 +00:00