mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-09 17:52:38 -05:00
Add some initial history APIs
This commit is contained in:
13
Weather/Service/Models/WeatherValue.cs
Normal file
13
Weather/Service/Models/WeatherValue.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user