mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
12 lines
240 B
C#
12 lines
240 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Power.Service.Models
|
|
{
|
|
[PublicAPI]
|
|
public class PowerStatus
|
|
{
|
|
public long Generation { get; set; }
|
|
public long Consumption { get; set; }
|
|
}
|
|
}
|