Skip to content

Commit

Permalink
🚀 Add new enum Profilart with profile types
Browse files Browse the repository at this point in the history
Added a new enum Profilart in the protobuf file to define different profile types for energy consumption and generation.
  • Loading branch information
hamidhajiparvaneh committed Jul 24, 2024
1 parent 091f5bc commit c083e1e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions BO4E/protobuf-files/bo4e.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2090,4 +2090,14 @@ message Einspeise {
EEGVermarktungsform EEGVermarktungsform = 12;
Landescode Landescode = 13;
FernsteuerbarkeitStatus FernsteuerbarkeitStatus = 14;
}

enum Profilart {
option (.protobuf_net.enumopt).namespace = "BO4E.ENUM";
option (.protobuf_net.enumopt).name = "Profilart";
ART_STANDARDLASTPROFIL = 0; // Z02
ART_TAGESPARAMETERABHAENGIGES_LASTPROFIL = 1; // Z03
ART_LASTPROFIL = 2; // Z12
ART_STANDARDEINSPEISEPROFIL = 3; // Z04
ART_TAGESPARAMETERABHAENGIGES_EINSPEISEPROFIL = 4; // Z05
}

0 comments on commit c083e1e

Please sign in to comment.