mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 09:59:13 -05:00
21 lines
491 B
C#
21 lines
491 B
C#
using JetBrains.Annotations;
|
|
using System;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
|
|
{
|
|
[PublicAPI]
|
|
public class WeatherReadingGrouped
|
|
{
|
|
public DateTimeOffset Bucket { get; set; }
|
|
|
|
public decimal AverageHumidity { get; set; }
|
|
|
|
public decimal AverageTemperature { get; set; }
|
|
|
|
public decimal AveragePressure { get; set; }
|
|
|
|
public decimal AverageLightLevel { get; set; }
|
|
|
|
public decimal RainTotal { get; set; }
|
|
}
|
|
} |