mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-06 09:35:40 -05:00
Update Weather to .NET 8 and add telemetry
This commit is contained in:
@@ -1,19 +1,18 @@
|
||||
using JetBrains.Annotations;
|
||||
using System;
|
||||
|
||||
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
|
||||
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models;
|
||||
|
||||
[PublicAPI]
|
||||
public class WindHistoryGrouped
|
||||
{
|
||||
[PublicAPI]
|
||||
public class WindHistoryGrouped
|
||||
{
|
||||
public DateTimeOffset Bucket { get; set; }
|
||||
public DateTimeOffset Bucket { get; set; }
|
||||
|
||||
public decimal MinimumSpeed { get; set; }
|
||||
public decimal MinimumSpeed { get; set; }
|
||||
|
||||
public decimal AverageSpeed { get; set; }
|
||||
public decimal AverageSpeed { get; set; }
|
||||
|
||||
public decimal MaximumSpeed { get; set; }
|
||||
public decimal MaximumSpeed { get; set; }
|
||||
|
||||
public decimal AverageDirection { get; set; }
|
||||
}
|
||||
public decimal AverageDirection { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user