amazfitbiptools/WatchFace.Parser/Elements/ActivityElements/FormattedNumber.cs

19 lines
471 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.ActivityElements
{
public class FormattedNumber
{
[ParameterId(1)]
public Number Number { get; set; }
[ParameterId(2)]
[ParameterImageIndex]
public long SuffixImageIndex { get; set; }
[ParameterId(3)]
[ParameterImagesCount]
public long DecimalPointImageIndex { get; set; }
}
}