amazfitbiptools/WatchFace.Parser/Elements/Date.cs

15 lines
355 B
C#
Raw Permalink 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
using WatchFace.Parser.Elements.DateElements;
2017-11-23 13:49:48 +01:00
namespace WatchFace.Parser.Elements
{
public class Date
{
[ParameterId(1)]
public MonthAndDay MonthAndDay { get; set; }
[ParameterId(2)]
public ImageSet WeekDay { get; set; }
}
}