Retrait de la variable privée et de l'interface INotifyPropertyChanged, inutile ici

pull/97/head
Rémi LAVERGNE 11 months ago
parent b06f729ffd
commit 6755dd03a1
No known key found for this signature in database
GPG Key ID: 7BCBAE9031E39160

@ -7,20 +7,10 @@ namespace Models.Game
/// </summary>
public class OperationCell : Position
{
private bool isChecked;
/// <summary>
/// It tells if the operation is checked or not in the operation grid of the game.
/// </summary>
public bool IsChecked
{
get => isChecked;
private set
{
isChecked = value;
OnPropertyChanged(nameof(IsChecked));
}
}
public bool IsChecked { get; private set; }
/// <summary>
/// Constructor of the OperationCell class.

Loading…
Cancel
Save