Update Weather to .NET 8 and add telemetry

This commit is contained in:
2024-01-25 16:25:59 -05:00
parent 2394f613d2
commit 5d0bc2c31c
28 changed files with 856 additions and 775 deletions

View File

@@ -1,21 +1,20 @@
using JetBrains.Annotations;
using System;
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models;
[PublicAPI]
public class WeatherReadingGrouped
{
[PublicAPI]
public class WeatherReadingGrouped
{
public DateTimeOffset Bucket { get; set; }
public DateTimeOffset Bucket { get; set; }
public decimal AverageHumidity { get; set; }
public decimal AverageHumidity { get; set; }
public decimal AverageTemperature { get; set; }
public decimal AverageTemperature { get; set; }
public decimal AveragePressure { get; set; }
public decimal AveragePressure { get; set; }
public decimal AverageLightLevel { get; set; }
public decimal AverageLightLevel { get; set; }
public decimal RainTotal { get; set; }
}
public decimal RainTotal { get; set; }
}