Add grouped weather value API

This commit is contained in:
2019-10-16 20:21:08 -04:00
parent 3abeca9a79
commit 1186f9179d
5 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using JetBrains.Annotations;
using System;
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
{
[PublicAPI]
public class WeatherValueGrouped
{
public DateTimeOffset Bucket { get; set; }
public decimal AverageValue { get; set; }
}
}