CANVAS WORKS

This commit is contained in:
lars
2020-10-13 14:49:43 +02:00
parent 245130a648
commit e792d28746
7 changed files with 171 additions and 6 deletions

50
Client/Models/Model.cs Normal file
View File

@@ -0,0 +1,50 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Client
{
class Model : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private int _numbers;
private bool _status;
public int Numbers
{
get
{
return _numbers;
}
set
{
_numbers = value;
}
}
public bool Status
{
get
{
return _status;
}
set
{
_status = value;
}
}
public Model()
{
_status = false;
_numbers = 0;
}
}
}