18 lines
383 B
C#
Raw Normal View History

2022-06-27 13:02:31 +08:00
namespace LemonUI.Menus
{
/// <summary>
/// The operation performed when the menu items are modified.
/// </summary>
public enum ItemOperation
{
/// <summary>
/// The item has been removed.
/// </summary>
Removed = -1,
/// <summary>
/// The item has been added.
/// </summary>
Added = 0,
}
}