Files
Wino-Mail/Wino.Core.Domain/Interfaces/INotificationBuilder.cs
T
2026-03-02 00:44:29 +01:00

50 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Wino.Core.Domain.Entities.Calendar;
using Wino.Core.Domain.Entities.Mail;
using Wino.Core.Domain.Entities.Shared;
namespace Wino.Core.Domain.Interfaces;
public interface INotificationBuilder
{
/// <summary>
/// Creates toast notifications for new mails.
/// </summary>
Task CreateNotificationsAsync(IEnumerable<MailCopy> newMailItems);
/// <summary>
/// Gets the unread Inbox messages for each account and updates the taskbar icon.
/// </summary>
/// <returns></returns>
Task UpdateTaskbarIconBadgeAsync();
/// <summary>
/// Removes the toast notification for a specific mail by unique id.
/// </summary>
void RemoveNotification(Guid mailUniqueId);
/// <summary>
/// Shows a notification that the account requires attention.
/// </summary>
/// <param name="account">Account that needs attention.</param>
void CreateAttentionRequiredNotification(MailAccount account);
/// <summary>
/// Shows a notification when WebView2 runtime is unavailable.
/// </summary>
void CreateWebView2RuntimeMissingNotification();
/// <summary>
/// Creates a calendar reminder toast for the specified calendar item.
/// </summary>
Task CreateCalendarReminderNotificationAsync(CalendarItem calendarItem, long reminderDurationInSeconds);
/// <summary>
/// Shows a notification that a migration is required for the new app version.
/// Synchronization is stopped and the user is prompted to open the app.
/// </summary>
void CreateMigrationRequiredNotification();
}