Files
HomeMonitor/Power/Service/Models/PowerStatusGrouped.cs
Chris Kaczor 2a58b26eb3 Power service updates
- Upgrade to .NET 8
- Remove ApplicationInsights
- Add OpenTelemetry
2024-01-22 18:54:18 -05:00

12 lines
295 B
C#

using JetBrains.Annotations;
using System;
namespace ChrisKaczor.HomeMonitor.Power.Service.Models;
[PublicAPI]
public class PowerStatusGrouped
{
public DateTimeOffset Bucket { get; set; }
public long AverageGeneration { get; set; }
public long AverageConsumption { get; set; }
}