mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-30 09:35:40 -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 WeatherValue
|
||||
{
|
||||
public DateTimeOffset Timestamp { get; set; }
|
||||
namespace ChrisKaczor.HomeMonitor.Weather.Service.Models;
|
||||
|
||||
public decimal Value { get; set; }
|
||||
}
|
||||
}
|
||||
[PublicAPI]
|
||||
public class WeatherValue
|
||||
{
|
||||
public DateTimeOffset Timestamp { get; set; }
|
||||
|
||||
public decimal Value { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user