amazfitbiptools/WatchFace.Parser/Elements/Weather.cs

17 lines
395 B
C#

using WatchFace.Parser.Attributes;
using WatchFace.Parser.Elements.WeatherElements;
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; }
}
}