Files

23 lines
429 B
C#
Raw Permalink Normal View History

2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Enums;
/// <summary>
/// Defines all possible folder operations that can be done.
/// Available values for each folder is returned by IContextMenuProvider
/// that integrators hold.
/// </summary>
public enum FolderOperation
2024-04-18 01:44:37 +02:00
{
2025-02-16 11:54:23 +01:00
None,
Pin,
Unpin,
MarkAllAsRead,
DontSync,
Empty,
Rename,
Delete,
Move,
TurnOffNotifications,
CreateSubFolder,
Seperator
2024-04-18 01:44:37 +02:00
}