You cannot 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
397 B
C#

12 months ago
namespace Ds.Module.WeChat.Models
{
[Serializable]
public class DecodedRunData : DecodeEntityBase
{
public List<DecodedRunData_StepModel> stepInfoList { get; set; }
}
/// <summary>
///
/// </summary>
[Serializable]
public class DecodedRunData_StepModel
{
public long timestamp { get; set; }
public long step { get; set; }
}
}