|
| 1 | +using System.Runtime.Serialization; |
| 2 | +using BO4E.meta; |
| 3 | + |
| 4 | +namespace BO4E.ENUM; |
| 5 | + |
| 6 | +/// <summary>Profiltyp (temperaturabhängig / standardlastprofil)</summary> |
| 7 | +[NonOfficial(NonOfficialCategory.REGULATORY_REQUIREMENTS)] |
| 8 | +public enum Profilklasse |
| 9 | +{ |
| 10 | + /// <summary>Gewerbe Werktags</summary> |
| 11 | + [ProtoBuf.ProtoEnum(Name = nameof(Profilklasse) + "_" + nameof(GEWERBE))] |
| 12 | + [EnumMember(Value = "GEWERBE")] |
| 13 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("GEWERBE")] |
| 14 | + GEWERBE, |
| 15 | + |
| 16 | + /// <summary>Gewerbe Werktags 9 bis 18 Uhr</summary> |
| 17 | + [EnumMember(Value = "GEWERBE_WERKTAG_9_BIS_18")] |
| 18 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("GEWERBE_WERKTAG_9_BIS_18")] |
| 19 | + GEWERBE_WERKTAG_9_BIS_18, |
| 20 | + |
| 21 | + /// <summary>Gewerbe mit starkem bis überwiegendem Verbrauch in den Abendstunden</summary> |
| 22 | + [EnumMember(Value = "GEWERBE_ABEND")] |
| 23 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("GEWERBE_ABEND")] |
| 24 | + GEWERBE_ABEND, |
| 25 | + |
| 26 | + /// <summary>Gewerbe durchlaufend</summary> |
| 27 | + [EnumMember(Value = "GEWERBE_DURCHLAUFEND")] |
| 28 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("GEWERBE_DURCHLAUFEND")] |
| 29 | + GEWERBE_DURCHLAUFEND, |
| 30 | + |
| 31 | + /// <summary>Gewerbe Laden/Friseur</summary> |
| 32 | + [EnumMember(Value = "GEWERBE_LADEN_FRISEUR")] |
| 33 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("GEWERBE_LADEN_FRISEUR")] |
| 34 | + GEWERBE_LADEN_FRISEUR, |
| 35 | + |
| 36 | + /// <summary>Gewerbe Bäckerei mit Backstube</summary> |
| 37 | + [EnumMember(Value = "GEWERBE_BAECKEREI")] |
| 38 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("GEWERBE_BAECKEREI")] |
| 39 | + GEWERBE_BAECKEREI, |
| 40 | + |
| 41 | + /// <summary>Gewerbe Wochenendbetrieb</summary> |
| 42 | + [EnumMember(Value = "GEWERBE_WOCHENENDE")] |
| 43 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("GEWERBE_WOCHENENDE")] |
| 44 | + GEWERBE_WOCHENENDE, |
| 45 | + |
| 46 | + /// <summary>Landwirtschaftsbetriebe allgemein</summary> |
| 47 | + [EnumMember(Value = "LANDWIRTSCHAFT")] |
| 48 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("LANDWIRTSCHAFT")] |
| 49 | + LANDWIRTSCHAFT, |
| 50 | + |
| 51 | + /// <summary>Landwirtschaftsbetriebe mit Milchwirtschaft/Nebenerwerbs-Tierzucht</summary> |
| 52 | + [EnumMember(Value = "LANDWIRTSCHAFT_MIT_MILCH")] |
| 53 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("LANDWIRTSCHAFT_MIT_MILCH")] |
| 54 | + LANDWIRTSCHAFT_MIT_MILCH, |
| 55 | + |
| 56 | + /// <summary>Landwirtschaft ohne Milchvieh</summary> |
| 57 | + [EnumMember(Value = "LANDWIRTSCHAFT_OHNE_MILCH")] |
| 58 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("LANDWIRTSCHAFT_OHNE_MILCH")] |
| 59 | + LANDWIRTSCHAFT_OHNE_MILCH, |
| 60 | + |
| 61 | + /// <summary>Haushalt</summary> |
| 62 | + [EnumMember(Value = "HAUSHALT")] |
| 63 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("HAUSHALT")] |
| 64 | + HAUSHALT, |
| 65 | + |
| 66 | + /// <summary>Bandlast</summary> |
| 67 | + [EnumMember(Value = "BANDLAST")] |
| 68 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("BANDLAST")] |
| 69 | + BANDLAST, |
| 70 | + |
| 71 | + /// <summary>Unterbrechbare Verbrauchseinrichtung</summary> |
| 72 | + [EnumMember(Value = "UNTERBRECHBARE_VERBRAUCHSEINRICHTUNG")] |
| 73 | + [System.Text.Json.Serialization.JsonStringEnumMemberName( |
| 74 | + "UNTERBRECHBARE_VERBRAUCHSEINRICHTUNG" |
| 75 | + )] |
| 76 | + UNTERBRECHBARE_VERBRAUCHSEINRICHTUNG, |
| 77 | + |
| 78 | + /// <summary>Heizwärmespeicher</summary> |
| 79 | + [EnumMember(Value = "HEIZWAERMESPEICHER")] |
| 80 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("HEIZWAERMESPEICHER")] |
| 81 | + HEIZWAERMESPEICHER, |
| 82 | + |
| 83 | + /// <summary>Straßenbeleuchtung</summary> |
| 84 | + [EnumMember(Value = "STRASSENBELEUCHTUNG")] |
| 85 | + [ProtoBuf.ProtoEnum(Name = nameof(Profilklasse) + "_" + nameof(STRASSENBELEUCHTUNG))] |
| 86 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("STRASSENBELEUCHTUNG")] |
| 87 | + STRASSENBELEUCHTUNG, |
| 88 | + |
| 89 | + /// <summary>Photovoltaik-Marktlokation</summary> |
| 90 | + [EnumMember(Value = "PHOTOVOLTAIK")] |
| 91 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("PHOTOVOLTAIK")] |
| 92 | + PHOTOVOLTAIK, |
| 93 | + |
| 94 | + /// <summary>Blockheizkraftwerk</summary> |
| 95 | + [EnumMember(Value = "BLOCKHEIZKRAFTWERK")] |
| 96 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("BLOCKHEIZKRAFTWERK")] |
| 97 | + BLOCKHEIZKRAFTWERK, |
| 98 | + |
| 99 | + /// <summary>Sonstige verbrauchende Marktlokation</summary> |
| 100 | + [EnumMember(Value = "SONSTIGE_VERBRAUCHENDE_MARKTLOKATION")] |
| 101 | + [System.Text.Json.Serialization.JsonStringEnumMemberName( |
| 102 | + "SONSTIGE_VERBRAUCHENDE_MARKTLOKATION" |
| 103 | + )] |
| 104 | + SONSTIGE_VERBRAUCHENDE_MARKTLOKATION, |
| 105 | + |
| 106 | + /// <summary>Sonstige erzeugende Marktlokation</summary> |
| 107 | + [EnumMember(Value = "SONSTIGE_ERZEUGENDE_MARKTLOKATION")] |
| 108 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("SONSTIGE_ERZEUGENDE_MARKTLOKATION")] |
| 109 | + SONSTIGE_ERZEUGENDE_MARKTLOKATION, |
| 110 | + |
| 111 | + /// <summary>E-Mobilität Ladepunkt im öffentlichen Bereich</summary> |
| 112 | + [EnumMember(Value = "EMOB_OEFFENTLICH")] |
| 113 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("EMOB_OEFFENTLICH")] |
| 114 | + EMOB_OEFFENTLICH, |
| 115 | + |
| 116 | + /// <summary>E-Mobilität Ladepunkt eines Haushalts</summary> |
| 117 | + [EnumMember(Value = "EMOB_HAUSHALT")] |
| 118 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("EMOB_HAUSHALT")] |
| 119 | + EMOB_HAUSHALT, |
| 120 | + |
| 121 | + /// <summary>E-Mobilität Ladepunkt eines Gewerbes</summary> |
| 122 | + [EnumMember(Value = "EMOB_GEWERBE")] |
| 123 | + [System.Text.Json.Serialization.JsonStringEnumMemberName("EMOB_GEWERBE")] |
| 124 | + EMOB_GEWERBE, |
| 125 | +} |
0 commit comments