mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
17 lines
362 B
C#
17 lines
362 B
C#
using JetBrains.Annotations;
|
|
using System;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
|
|
{
|
|
[PublicAPI]
|
|
public class WindSpeedReadingGrouped
|
|
{
|
|
public DateTimeOffset Bucket { get; set; }
|
|
|
|
public decimal Minimum { get; set; }
|
|
|
|
public decimal Average { get; set; }
|
|
|
|
public decimal Maximum { get; set; }
|
|
}
|
|
} |