Files
Proftaak-RH-B4/DoctorApp/Models/PatientInfo.cs
shinichi cc046d6611 wip
2020-10-16 16:24:07 +02:00

26 lines
548 B
C#

using System.Collections.ObjectModel;
using Util;
namespace DoctorApp.Models
{
class PatientInfo : ObservableObject
{
public ObservableCollection<string> ChatLog { get; set; }
public string Username { get; set; }
public string Status { get; set; }
public int Speed { get; set; }
public int BPM { get; set; }
public int Resistance { get; set; }
public int Acc_Power { get; set; }
public int Curr_Power { get; set; }
public int Distance { get; set; }
}
}