Add some initial history APIs

This commit is contained in:
2019-09-06 17:30:01 -04:00
parent 23d1e779c1
commit 1f1f54706c
6 changed files with 67 additions and 2 deletions

View File

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