mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-14 18:47:28 -05:00
Rework wind history API
This commit is contained in:
19
Weather/Service/Models/WindHistoryGrouped.cs
Normal file
19
Weather/Service/Models/WindHistoryGrouped.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using JetBrains.Annotations;
|
||||
using System;
|
||||
|
||||
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
|
||||
{
|
||||
[PublicAPI]
|
||||
public class WindHistoryGrouped
|
||||
{
|
||||
public DateTimeOffset Bucket { get; set; }
|
||||
|
||||
public decimal MinimumSpeed { get; set; }
|
||||
|
||||
public decimal AverageSpeed { get; set; }
|
||||
|
||||
public decimal MaximumSpeed { get; set; }
|
||||
|
||||
public decimal AverageDirection { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user