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