Created
April 13, 2022 11:53
-
-
Save fardeen9983/2e9c693350b0d4424057abe1cf0d4416 to your computer and use it in GitHub Desktop.
Notification Service Interface
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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