amazfitbiptools/WatchFace.Parser/Elements/Status.cs

20 lines
443 B
C#
Raw Normal View History

2017-11-25 15:42:48 +01:00
using WatchFace.Parser.Attributes;
using WatchFace.Parser.Elements.StatusElements;
2017-11-23 13:49:48 +01:00
namespace WatchFace.Parser.Elements
{
public class Status
{
[ParameterId(1)]
public Switch Bluetooth { get; set; }
[ParameterId(2)]
public Switch Alarm { get; set; }
[ParameterId(3)]
public Switch Lock { get; set; }
[ParameterId(4)]
public Switch DoNotDisturb { get; set; }
}
}