Initial commit.
This commit is contained in:
49
Wino.Core.Domain/Enums/MailOperation.cs
Normal file
49
Wino.Core.Domain/Enums/MailOperation.cs
Normal file
@@ -0,0 +1,49 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user