amazfitbiptools/WatchFace.Parser/Elements/Battery.cs

23 lines
504 B
C#
Raw Normal View History

2017-11-25 15:42:48 +01:00
using WatchFace.Parser.Attributes;
using WatchFace.Parser.Elements.BasicElements;
2017-11-23 13:49:48 +01:00
namespace WatchFace.Parser.Elements
{
public class Battery
{
[ParameterId(1)]
public Number Text { get; set; }
[ParameterId(2)]
public ImageSet Icon { get; set; }
[ParameterId(3)]
public Scale Scale { get; set; }
2019-02-02 22:22:00 +01:00
[ParameterId(5)]
public long? Unknown5 { get; set; }
[ParameterId(6)]
public long? Unknown6 { get; set; }
}
}