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

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; }
}
}