2025-02-16 11:54:23 +01:00
|
|
|
namespace Wino.Core.Domain;
|
|
|
|
|
|
|
|
|
|
public static class Constants
|
2024-04-18 01:44:37 +02:00
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// MIME header that exists in all the drafts created from Wino.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public const string WinoLocalDraftHeader = "X-Wino-Draft-Id";
|
|
|
|
|
public const string LocalDraftStartPrefix = "localDraft_";
|
2024-04-18 01:44:37 +02:00
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
public const string CalendarEventRecurrenceRuleSeperator = "___";
|
2024-12-28 23:17:16 +01:00
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
public const string ToastMailUniqueIdKey = nameof(ToastMailUniqueIdKey);
|
|
|
|
|
public const string ToastActionKey = nameof(ToastActionKey);
|
2025-11-14 12:12:13 +01:00
|
|
|
public const string ToastMailAccountIdKey = nameof(ToastMailAccountIdKey);
|
2026-02-11 01:49:29 +01:00
|
|
|
public const string ToastCalendarItemIdKey = nameof(ToastCalendarItemIdKey);
|
|
|
|
|
public const string ToastCalendarActionKey = nameof(ToastCalendarActionKey);
|
|
|
|
|
public const string ToastCalendarNavigateAction = nameof(ToastCalendarNavigateAction);
|
2026-03-04 00:12:52 +01:00
|
|
|
public const string ToastCalendarSnoozeAction = nameof(ToastCalendarSnoozeAction);
|
|
|
|
|
public const string ToastCalendarSnoozeDurationInputId = nameof(ToastCalendarSnoozeDurationInputId);
|
2026-02-22 15:13:39 +01:00
|
|
|
public const string ToastModeKey = nameof(ToastModeKey);
|
|
|
|
|
public const string ToastModeMail = nameof(ToastModeMail);
|
|
|
|
|
public const string ToastModeCalendar = nameof(ToastModeCalendar);
|
2025-02-16 11:54:23 +01:00
|
|
|
public const string ClientLogFile = "Client_.log";
|
|
|
|
|
public const string ServerLogFile = "Server_.log";
|
|
|
|
|
public const string LogArchiveFileName = "WinoLogs.zip";
|
2024-11-11 13:56:56 +01:00
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
public const string WinoMailIdentiifer = nameof(WinoMailIdentiifer);
|
|
|
|
|
public const string WinoCalendarIdentifier = nameof(WinoCalendarIdentifier);
|
2024-04-18 01:44:37 +02:00
|
|
|
}
|