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);
|
2024-08-05 00:36:26 +02:00
|
|
|
|
|
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
|
|
|
|
}
|