using BankSampahApp.Models; namespace BankSampahApp.Services; public interface INotificationService { Task> GetNotificationsAsync(NotificationCategory? category = null); NotificationItem? GetById(int id); Task UpdateReadStateAsync(int id, bool isRead); Task DeleteAsync(int id); }