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

24 lines
921 B
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);
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
}