Update power message sent to hub

This commit is contained in:
2019-10-14 20:58:56 -04:00
parent 5b8c2cb528
commit fe1a66a655
2 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
using JetBrains.Annotations;
namespace ChrisKaczor.HomeMonitor.Power.Service.Models
{
[PublicAPI]
public class PowerStatus
{
public long Generation { get; set; }
public long Consumption { get; set; }
}
}