50 lines
922 B
C#
50 lines
922 B
C#
namespace Wino.Core.Domain.Enums
|
|
{
|
|
// Synchronizer requests.
|
|
public enum MailSynchronizerOperation
|
|
{
|
|
MarkRead,
|
|
Move,
|
|
Delete, // Hard delete.
|
|
CreateDraft,
|
|
Send,
|
|
ChangeFlag,
|
|
AlwaysMoveTo,
|
|
MoveToFocused,
|
|
RenameFolder
|
|
}
|
|
|
|
// UI requests
|
|
public enum MailOperation
|
|
{
|
|
None,
|
|
Archive,
|
|
UnArchive,
|
|
SoftDelete,
|
|
HardDelete,
|
|
Move,
|
|
MoveToJunk,
|
|
MoveToFocused,
|
|
MoveToOther,
|
|
AlwaysMoveToOther,
|
|
AlwaysMoveToFocused,
|
|
SetFlag,
|
|
ClearFlag,
|
|
MarkAsRead,
|
|
MarkAsUnread,
|
|
MarkAsNotJunk,
|
|
Seperator,
|
|
Ignore,
|
|
Reply,
|
|
ReplyAll,
|
|
Zoom,
|
|
SaveAs,
|
|
Find,
|
|
Forward,
|
|
DarkEditor,
|
|
LightEditor,
|
|
Print,
|
|
Navigate // For toast activation
|
|
}
|
|
}
|