Files
Proftaak-RH-B4/ClientApp/Models/Info.cs
2020-10-14 15:01:13 +02:00

18 lines
389 B
C#

using ClientApp.Utils;
using System;
using System.Collections.Generic;
using System.Text;
using Util;
namespace ClientApp.Models
{
class Info : ObservableObject
{
public bool ConnectedToServer { get; set; }
public bool ConnectedToVREngine { get; set; }
public bool DoctorConnected { get; set; }
public bool CanConnectToVR { get; set; }
}
}