[ADDED] lobby to the shared project and almost done with start GUI

This commit is contained in:
lars
2020-10-13 11:49:31 +02:00
parent 66efaf736d
commit d84899a712
9 changed files with 313 additions and 1 deletions

50
Client/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;
}
}
}