12 lines
387 B
C#
Executable File
12 lines
387 B
C#
Executable File
using System.Net.Mail;
|
|
using GamificationService.Models.Database;
|
|
using GamificationService.Utils;
|
|
|
|
namespace GamificationService.Services.NotificationService;
|
|
|
|
public interface INotificationService
|
|
{
|
|
public Task SendMailNotificationAsync(ApplicationUser user, Notification notification);
|
|
public Task SendPushNotificationAsync(ApplicationUser user, Notification notification);
|
|
}
|