Files
Wino-Mail/Wino.Core.Domain/Constants.cs
T

31 lines
1.5 KiB
C#
Raw Normal View History

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);
public const string ToastCalendarItemIdKey = nameof(ToastCalendarItemIdKey);
public const string ToastCalendarActionKey = nameof(ToastCalendarActionKey);
public const string ToastCalendarNavigateAction = nameof(ToastCalendarNavigateAction);
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";
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
}