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

16 lines
583 B
C#
Raw Normal View History

2024-04-18 01:44:37 +02:00
namespace Wino.Core.Domain
{
public static class Constants
{
/// <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_";
public const string ToastMailItemIdKey = nameof(ToastMailItemIdKey);
2024-06-13 22:48:33 +02:00
public const string ToastMailItemRemoteFolderIdKey = nameof(ToastMailItemRemoteFolderIdKey);
2024-04-18 01:44:37 +02:00
public const string ToastActionKey = nameof(ToastActionKey);
}
}