Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions CFX/ResourcePerformance/EnergyConsumed.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using CFX.Structures;
using System;
using System.Collections.Generic;
using System.Text;

Expand Down Expand Up @@ -487,7 +488,11 @@ public double ThreePhaseNeutralCurrentNow
/// The sub-device granularity reports energy data
/// </summary>
[CFX.Utilities.CreatedVersion("2.1")]
public List<ConsumptionDetail> ConsumptionDetails { get; set; }
public List<ConsumptionDetail> ConsumptionDetails
{
get;
set;
}
}

[CFX.Utilities.CreatedVersion("2.1")]
Expand All @@ -500,4 +505,5 @@ public class ConsumptionDetail : EnergyConsumed
[CFX.Utilities.CreatedVersion("2.1")]
public string SubsystemName { get; set; }
}

}
Loading