mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-13 17:22:54 -05:00
20 lines
449 B
C#
20 lines
449 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; }
|
|
} |