mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-30 01:25:39 -05:00
Update Weather to .NET 8 and add telemetry
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
using JetBrains.Annotations;
|
||||
using System;
|
||||
|
||||
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
|
||||
{
|
||||
[PublicAPI]
|
||||
public class WeatherValueGrouped
|
||||
{
|
||||
public DateTimeOffset Bucket { get; set; }
|
||||
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models;
|
||||
|
||||
public decimal AverageValue { get; set; }
|
||||
}
|
||||
[PublicAPI]
|
||||
public class WeatherValueGrouped
|
||||
{
|
||||
public DateTimeOffset Bucket { get; set; }
|
||||
|
||||
public decimal AverageValue { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user