Files
laatzen/Common/OmniPlus/InspectionUI/Plugins/ItemsGridCellCommandVM.cs
T

23 lines
442 B
C#

namespace InspectionUI
{
using InspectionUI.Abstraction.Interfaces;
using System;
using System.Windows.Input;
public class ItemsGridCellCommandVM : ItemsGridCellVM, IGridCellCommand
{
public ItemsGridCellCommandVM() : base()
{
}
public ICommand Cmd { get; private set; }
public Action Executable
{
set => this.Cmd = new Command(value);
}
}
}