Bewertungssystem angefangen

This commit is contained in:
2023-09-11 20:39:23 +02:00
parent f41cfff5c0
commit 560ac6246b
32 changed files with 9504 additions and 51 deletions

View File

@@ -0,0 +1,25 @@
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; }
}
}