Files
Proftaak-RH-B4/DoctorApp/Models/Info.cs
2020-10-12 12:50:38 +02:00

17 lines
377 B
C#

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