12 lines
258 B
C#
12 lines
258 B
C#
namespace InspectionUI.ViewModels
|
|
{
|
|
internal class ItemsGridActionsVM : ItemsGridCellVM
|
|
{
|
|
private MeterVM meterVM;
|
|
|
|
public ItemsGridActionsVM(MeterVM meterVM) : base()
|
|
{
|
|
this.meterVM = meterVM;
|
|
}
|
|
}
|
|
} |