Skip to content

Instantly share code, notes, and snippets.

@fardeen9983
Created April 13, 2022 11:53
Show Gist options
  • Save fardeen9983/2e9c693350b0d4424057abe1cf0d4416 to your computer and use it in GitHub Desktop.
Save fardeen9983/2e9c693350b0d4424057abe1cf0d4416 to your computer and use it in GitHub Desktop.
Notification Service Interface
using System.Threading.Tasks;
namespace CodePanthers.AWS.S3.UploadService.Services
{
public interface INotificationService
{
Task SendUploadNotification(string topic, string message);
Task SendUploadNotification(string message);
Task RegisterSubscirption(string email);
Task RegisterSubscirption(string topic, string email);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment