mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
19 lines
427 B
C#
19 lines
427 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; }
|
|
}
|
|
} |