amazfitbiptools/WatchFace.Parser/Elements/Time.cs

20 lines
439 B
C#
Raw Normal View History

2017-11-25 15:42:48 +01:00
using WatchFace.Parser.Attributes;
using WatchFace.Parser.Elements.TimeElements;
2017-11-23 13:49:48 +01:00
namespace WatchFace.Parser.Elements
{
public class Time
{
[ParameterId(1)]
public TwoDigits Hours { get; set; }
[ParameterId(2)]
public TwoDigits Minutes { get; set; }
[ParameterId(3)]
public TwoDigits Seconds { get; set; }
[ParameterId(4)]
public AmPm AmPm { get; set; }
}
}