mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-02-03 09:35:41 -05:00
Add power database support
This commit is contained in:
13
Power/Service/Models/PowerStatusGrouped.cs
Normal file
13
Power/Service/Models/PowerStatusGrouped.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user