amazfitbiptools/WatchFace.Parser/Elements/Weather.cs

17 lines
395 B
C#
Raw Normal View History

2017-11-25 15:42:48 +01:00
using WatchFace.Parser.Attributes;
using WatchFace.Parser.Elements.WeatherElements;
2017-11-23 13:49:48 +01:00
namespace WatchFace.Parser.Elements
{
public class Weather
{
[ParameterId(1)]
public WeatherIcon Icon { get; set; }
[ParameterId(2)]
public Temperature Temperature { get; set; }
[ParameterId(3)]
public AirPollution AirPollution { get; set; }
}
}