Skip to content

Commit

Permalink
Dev 45330: Adding Aufteilungsfaktor Energiemenge to Rechenschritt in …
Browse files Browse the repository at this point in the history
…UTILTS (#409)
  • Loading branch information
levtoji authored Jan 31, 2024
1 parent 5882159 commit 27ec903
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions BO4E/COM/Rechenschritt.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
using System.Text.Json.Serialization;

using BO4E.ENUM;
using BO4E.meta;

using Newtonsoft.Json;

using ProtoBuf;

namespace BO4E.COM
Expand Down Expand Up @@ -84,5 +81,14 @@ public class Rechenschritt : COM
[JsonProperty(Required = Required.Default, Order = 8, PropertyName = "weitererRechenschritt")]
[JsonPropertyName("weitererRechenschritt")]
public Rechenschritt? WeitererRechenschritt { get; set; }

/// <summary>
/// Aufteilungsfaktor Energiemenge
/// </summary>
/// <remarks>UTILTS SG9 CCI ZG6</remarks>
[JsonProperty(Required = Required.Default, Order = 9, PropertyName = "aufteilungsfaktorEnergiemenge")]
[JsonPropertyName("aufteilungsfaktorEnergiemenge")]
[ProtoMember(9)]
public decimal? AufteilungsfaktorEnergiemenge { get; set; }
}
}
}

0 comments on commit 27ec903

Please sign in to comment.