amazfitbiptools/WatchFace.Parser/WatchFace.cs

38 lines
880 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)]
public AnalogDialFace AnalogDialFace { get; set; }
2019-02-02 22:22:00 +01:00
[ParameterId(14)]
public UnknownType14 Unknown14 { get; set; }
}
}