Files
Proftaak-RH-B4/DoctorApp/Models/PatientInfo.cs
fabjuuuh 083f27411e chart
2020-10-19 14:02:42 +02:00

26 lines
553 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 double Speed { get; set; }
public int BPM { get; set; }
public float Resistance { get; set; }
public int Acc_Power { get; set; }
public int Curr_Power { get; set; }
public int Distance { get; set; }
}
}