erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Domain/NotificationProviders/SmsNotification.cs
2025-11-11 22:49:52 +03:00

13 lines
290 B
C#

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