amazfitbiptools/WatchFace.Parser/WatchFace.cs

41 lines
978 B
C#
Raw Normal View History

2017-11-25 15:42:48 +01:00
using WatchFace.Parser.Attributes;
using WatchFace.Parser.Elements;
2017-11-23 13:49:48 +01:00
namespace WatchFace.Parser
{
public class WatchFace
{
[ParameterId(2)]
public Background Background { get; set; }
[ParameterId(3)]
public Time Time { get; set; }
[ParameterId(4)]
public Activity Activity { get; set; }
[ParameterId(5)]
public Date Date { get; set; }
[ParameterId(6)]
public Weather Weather { get; set; }
[ParameterId(7)]
public StepsProgress StepsProgress { get; set; }
[ParameterId(8)]
public Status Status { get; set; }
[ParameterId(9)]
public Battery Battery { get; set; }
[ParameterId(10)]
2018-01-13 14:58:37 +01:00
public AnalogDialVector AnalogDialFace { get; set; }
[ParameterId(12)]
2018-01-13 14:58:37 +01:00
public AnalogDialBitmaps AnalogDialBitmaps { get; set; }
[ParameterId(13)]
public PulseProgress PulseProgress { get; set; }
}
}