added status

This commit is contained in:
shinichi
2020-10-07 16:31:44 +02:00
parent d7dfe32cc3
commit 91bb0d65b7
5 changed files with 75 additions and 29 deletions

View File

@@ -1,13 +0,0 @@
using System;
using System.Collections.Generic;
using System.Text;
using ClientApp.Utils;
namespace ClientApp.Models
{
class ClientInfo : ObservableObject
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
}

14
ClientApp/Models/Info.cs Normal file
View File

@@ -0,0 +1,14 @@
using ClientApp.Utils;
using System;
using System.Collections.Generic;
using System.Text;
namespace ClientApp.Models
{
class Info : ObservableObject
{
public bool ConnectedToServer { get; set; }
public bool ConnectedToVREngine { get; set; }
public bool DoctorConnected { get; set; }
}
}