File MenuModifiedEventArgs.cs
File List > LemonUI > LemonUI > Menus > MenuModifiedEventArgs.cs
Go to the documentation of this file
namespace LemonUI.Menus
{
public class MenuModifiedEventArgs
{
#region Properties
public NativeItem Item { get; }
public ItemOperation Operation { get; }
#endregion
#region Constructors
public MenuModifiedEventArgs(NativeItem item, ItemOperation operation)
{
Item = item;
Operation = operation;
}
#endregion
}
}