mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +02:00
19 lines
380 B
C#
19 lines
380 B
C#
using System.Drawing;
|
|
using UVtools.Core.Operations;
|
|
|
|
namespace UVtools.GUI.Controls
|
|
{
|
|
public sealed class OperationMenuItem
|
|
{
|
|
public Operation Operation { get; }
|
|
|
|
public Image Icon { get; }
|
|
|
|
public OperationMenuItem(Operation operation, Image icon = null)
|
|
{
|
|
Operation = operation;
|
|
Icon = icon;
|
|
}
|
|
}
|
|
}
|