Skip to content

Commit

Permalink
⚡️ Update Einspeise to Einspeisung in codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
hamidhajiparvaneh committed Jul 24, 2024
1 parent 30f374c commit ed2c8b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion BO4E/BO/BusinessObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ namespace BO4E.BO;
[ProtoInclude(32, typeof(MabisZaehlpunkt))]
[ProtoInclude(33, typeof(Summenzeitreihe))]
[ProtoInclude(34, typeof(Lokationszuordnung))]
[ProtoInclude(35, typeof(Einspeise))]
[ProtoInclude(35, typeof(Einspeisung))]
public abstract class BusinessObject : IUserProperties, IOptionalGuid
{
/// <summary>
Expand Down
8 changes: 4 additions & 4 deletions BO4E/BO/Einspeise.cs → BO4E/BO/Einspeisung.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
namespace BO4E.BO;

/// <summary>
/// Einspeise BO
/// Einspeisung BO
/// </summary>
[ProtoContract]
[NonOfficial(NonOfficialCategory.MISSING)]
public class Einspeise : BusinessObject
public class Einspeisung : BusinessObject
{
/// <summary>
/// Für welche Marktlokation gelten diese Einspeisedaten
Expand All @@ -39,8 +39,8 @@ public class Einspeise : BusinessObject
/// <summary>
/// Vermarktungsformen gemäß dem Erneuerbare-Energien-Gesetz (EEG).
/// </summary>
[JsonProperty(PropertyName = "eEGVermarktungsform", Required = Required.Default, Order = 12)]
[JsonPropertyName("eEGVermarktungsform")]
[JsonProperty(PropertyName = "eegVermarktungsform", Required = Required.Default, Order = 12)]
[JsonPropertyName("eegVermarktungsform")]
[JsonPropertyOrder(12)]
[NonOfficial(NonOfficialCategory.MISSING)]
[ProtoMember(12)]
Expand Down
2 changes: 1 addition & 1 deletion BO4E/protobuf-files/bo4e.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2083,7 +2083,7 @@ enum FernsteuerbarkeitStatus {
Z98_LIEFERANT_FERNSTEUERBAR = 2;
}

message Einspeise {
message Einspeisung {
option (.protobuf_net.msgopt).namespace = "BO4E.BO";
string MarktlokationsId = 10;
Geschaeftspartnerrolle Verguetungsempfaenger = 11;
Expand Down

0 comments on commit ed2c8b3

Please sign in to comment.