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.
18 lines
721 B
18 lines
721 B
2 years ago
|
namespace Zncy.CloudCar.WeChat.Service.Models
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class DecodedRunData : DecodeEntityBase
|
||
|
{
|
||
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“stepInfoList”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
public List<DecodedRunData_StepModel> stepInfoList { get; set; }
|
||
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“stepInfoList”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
||
|
}
|
||
|
|
||
|
[Serializable]
|
||
|
public class DecodedRunData_StepModel
|
||
|
{
|
||
|
public long timestamp { get; set; }
|
||
|
public long step { get; set; }
|
||
|
}
|
||
|
}
|