amazfitbiptools/WatchFace.Parser/Elements/WeatherElements/AirPollution.cs

13 lines
305 B
C#
Raw 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
namespace WatchFace.Parser.Elements.WeatherElements
{
public class AirPollution
{
// TODO: Looks like here should be Id 1 also
[ParameterId(2)]
public ImageSet Icon { get; set; }
}
}