Calendar invitations for Mail part of the app.

This commit is contained in:
Burak Kaan Köse
2026-01-05 00:21:07 +01:00
parent 0b0f6b8d8e
commit 3d07328f47
24 changed files with 679 additions and 66 deletions
+27
View File
@@ -0,0 +1,27 @@
namespace Wino.Core.Domain.Enums;
/// <summary>
/// Represents the type of mail item.
/// </summary>
public enum MailItemType
{
/// <summary>
/// Regular mail message.
/// </summary>
Mail = 0,
/// <summary>
/// Calendar invitation (meeting request).
/// </summary>
CalendarInvitation = 1,
/// <summary>
/// Calendar response (meeting accepted, tentatively accepted, or declined).
/// </summary>
CalendarResponse = 2,
/// <summary>
/// Calendar cancellation (meeting cancelled).
/// </summary>
CalendarCancellation = 3
}