Files
HomeMonitor/Weather/Service/Models/WeatherReadingGrouped.cs

23 lines
564 B
C#

using JetBrains.Annotations;
using System;
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
{
[PublicAPI]
public class WeatherReadingGrouped
{
public DateTimeOffset Bucket { get; set; }
public decimal AverageHumidityTemperature { get; set; }
public decimal AverageHumidity { get; set; }
public decimal AveragePressureTemperature { get; set; }
public decimal AveragePressure { get; set; }
public decimal AverageLightLevel { get; set; }
public decimal RainTotal { get; set; }
}
}