You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
708 B
20 lines
708 B
namespace HeartTrack.Models
|
|
{
|
|
public class Activity
|
|
{
|
|
public int IdActivity { get; set; }
|
|
public string Type { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public TimeOnly StartTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public int EffortRessenti { get; set; }
|
|
public float Variability { get; set; }
|
|
public float Variance { get; set; }
|
|
public float StandardDeviation { get; set; }
|
|
public float Average { get; set; }
|
|
public int Maximum { get; set; }
|
|
public int Minimum { get; set; }
|
|
public float AvrTemperature { get; set; }
|
|
public bool HasAutoPause { get; set; }
|
|
}
|
|
} |