amazfitbiptools/WatchFace.Parser/Elements/DateElements/OneLineMonthAndDay.cs

15 lines
364 B
C#

using WatchFace.Parser.Attributes;
using WatchFace.Parser.Elements.BasicElements;
namespace WatchFace.Parser.Elements.DateElements
{
public class OneLineMonthAndDay
{
[ParameterId(1)]
public Number Number { get; set; }
[ParameterId(2)]
[ParameterImageIndex]
public long DelimiterImageIndex { get; set; }
}
}