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