Files
dcnsanplanung/dcnsanplanung.wpf/ViewModel/CellViewModel.cs

26 lines
550 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace dcnsanplanung.wpf.ViewModel
{
internal class CellViewModel : BaseViewModel, ICellViewModel
{
private ICell _cell;
public ICell Cell {
get { return _cell; }
set {
_cell = value;
OnPropertyChanged(nameof(_cell));
}
}
public ICommand ChangeCellStateCommand { get; }
}
}