mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
14 lines
326 B
C#
14 lines
326 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; }
|
|
}
|
|
}
|