mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 17:23:11 -05:00
13 lines
274 B
C#
13 lines
274 B
C#
using JetBrains.Annotations;
|
|
using System;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
|
|
{
|
|
[PublicAPI]
|
|
public class WeatherValueGrouped
|
|
{
|
|
public DateTimeOffset Bucket { get; set; }
|
|
|
|
public decimal AverageValue { get; set; }
|
|
}
|
|
} |