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.
15 lines
455 B
15 lines
455 B
namespace Dto;
|
|
|
|
public class HeartRateDto
|
|
{
|
|
public DateTime Timestamp { get; set; }
|
|
public double? Latitude { get; set; }
|
|
public double? Longitude { get; set; }
|
|
public double? Altitude { get; set; }
|
|
public int HeartRate { get; set; }
|
|
public int? Cadence { get; set; }
|
|
public double? Distance { get; set; }
|
|
public double? Speed { get; set; }
|
|
public int? Power { get; set; }
|
|
public double? Temperature { get; set; }
|
|
} |