mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 17:23:11 -05:00
12 lines
302 B
C#
12 lines
302 B
C#
using JetBrains.Annotations;
|
|
using System;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Power.Service.Models;
|
|
|
|
[PublicAPI]
|
|
public class PowerStatus
|
|
{
|
|
public DateTimeOffset Timestamp { get; set; } = DateTimeOffset.UtcNow;
|
|
public long Generation { get; set; }
|
|
public long Consumption { get; set; }
|
|
} |