mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 09:59:13 -05:00
18 lines
389 B
C#
18 lines
389 B
C#
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; }
|
|
} |