Files
Wino-Mail/Wino.Core.Domain/Interfaces/INotificationBuilder.cs
T

65 lines
2.0 KiB
C#
Raw Normal View History

using System;
2024-04-18 01:44:37 +02:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Wino.Core.Domain.Entities.Calendar;
2025-10-03 15:46:38 +02:00
using Wino.Core.Domain.Entities.Mail;
2025-11-14 12:12:13 +01:00
using Wino.Core.Domain.Entities.Shared;
2024-04-18 01:44:37 +02:00
2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Interfaces;
public interface INotificationBuilder
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
/// <summary>
/// Creates toast notifications for new mails.
/// </summary>
Task CreateNotificationsAsync(IEnumerable<MailCopy> newMailItems);
2024-04-18 01:44:37 +02:00
2025-02-16 11:54:23 +01:00
/// <summary>
/// Gets the unread Inbox messages for each account and updates the taskbar icon.
/// </summary>
/// <returns></returns>
Task UpdateTaskbarIconBadgeAsync();
2024-04-18 01:44:37 +02:00
2026-04-11 01:28:19 +02:00
/// <summary>
/// Adds to the calendar app-entry badge count for newly downloaded events.
/// </summary>
Task AddCalendarTaskbarBadgeCountAsync(int newlyDownloadedCount);
/// <summary>
/// Clears the calendar app-entry badge.
/// </summary>
Task ClearCalendarTaskbarBadgeAsync();
/// <summary>
/// Removes the toast notification for a specific mail by unique id.
/// </summary>
void RemoveNotification(Guid mailUniqueId);
2025-11-14 12:12:13 +01:00
/// <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();
2026-03-08 11:22:41 +01:00
/// <summary>
/// Shows a notification when a Microsoft Store update is available.
/// </summary>
void CreateStoreUpdateNotification();
2026-04-25 16:12:49 +02:00
/// <summary>
/// Shows the one-time release migration notification.
/// </summary>
void CreateReleaseMigrationNotification();
/// <summary>
/// Creates a calendar reminder toast for the specified calendar item.
/// </summary>
Task CreateCalendarReminderNotificationAsync(CalendarItem calendarItem, long reminderDurationInSeconds);
2024-04-18 01:44:37 +02:00
}
2026-03-08 11:22:41 +01:00