17 lines
377 B
C#
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; }
|
|
}
|
|
}
|