-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Gueltig and Qualitaet to BusinessObject (#534)
* update projects * Add Gueltig and Qualitaet to businessobject * Update name to gueltigkeitszeitraum + add some docstrings
- Loading branch information
1 parent
7cd7e2a
commit 5c69bea
Showing
5 changed files
with
111 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
using System.Runtime.Serialization; | ||
using ProtoBuf; | ||
|
||
namespace BO4E.ENUM; | ||
|
||
/// <summary>Qualitätsstufen eines Business-Objektes, v.a. aus Sicht Marktkommunikation </summary> | ||
public enum Qualitaet | ||
{ | ||
/// <summary>Vollstaendig</summary> | ||
[EnumMember(Value = "VOLLSTAENDIG")] | ||
[ProtoEnum(Name = nameof(Qualitaet) + "_" + nameof(VOLLSTAENDIG))] | ||
VOLLSTAENDIG, | ||
|
||
/// <summary>Informativ | ||
/// </summary> | ||
[EnumMember(Value = "INFORMATIV")] | ||
[ProtoEnum(Name = nameof(Qualitaet) + "_" + nameof(INFORMATIV))] | ||
INFORMATIV, | ||
|
||
/// <summary>Im System vorhanden</summary> | ||
[EnumMember(Value = "IM_SYSTEM_VORHANDEN")] | ||
[ProtoEnum(Name = nameof(Qualitaet) + "_" + nameof(IM_SYSTEM_VORHANDEN))] | ||
IM_SYSTEM_VORHANDEN, | ||
|
||
/// <summary>Erwartet</summary> | ||
[EnumMember(Value = "ERWARTET")] | ||
[ProtoEnum(Name = nameof(Qualitaet) + "_" + nameof(ERWARTET))] | ||
ERWARTET, | ||
|
||
/// <summary>Vorlaeufig</summary> | ||
[EnumMember(Value = "VORLAEUFIG")] | ||
[ProtoEnum(Name = nameof(Qualitaet) + "_" + nameof(VORLAEUFIG))] | ||
VORLAEUFIG, | ||
|
||
/// <summary>Unvollstaendig</summary> | ||
[EnumMember(Value = "UNVOLLSTAENDIG")] | ||
[ProtoEnum(Name = nameof(Qualitaet) + "_" + nameof(UNVOLLSTAENDIG))] | ||
UNVOLLSTAENDIG, | ||
} |
Oops, something went wrong.