amazfitbiptools/WatchFace.Parser/Elements/Battery.cs

17 lines
359 B
C#
Raw Normal View History

2017-11-23 13:49:48 +01:00
using WatchFace.Parser.Elements.BasicElements;
using WatchFace.Parser.Utils;
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; }
}
}