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.
25 lines
826 B
25 lines
826 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; }
|
|
public DataSourceDto? DataSource { get; set; }
|
|
|
|
public UserDto? Athlete { get; set; }
|
|
|
|
// public int? TrainingId { get; set; }
|
|
public IEnumerable<HeartRateDto> HeartRates { get; set; }
|
|
} |