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.
19 lines
617 B
19 lines
617 B
namespace Dto;
|
|
|
|
public class ActivityDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Type { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public DateTime StartTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public int EffortFelt { 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 AverageTemperature { get; set; }
|
|
public bool HasAutoPause { get; set; }
|
|
} |