Skip to content

Commit

Permalink
use Verwendungszweck instead of list
Browse files Browse the repository at this point in the history
  • Loading branch information
hf-lkosareva committed Dec 12, 2023
1 parent ac33a60 commit d3a98a9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions BO4E/BO/Berechnungsformel.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
using BO4E.COM;
using BO4E.ENUM;
Expand Down Expand Up @@ -58,12 +57,12 @@ private DateTime _Beginndatum
public int? RechenschrittId { get; set; }

/// <summary>
/// Liste von Verwendungszweck der Werte
/// Verwendungszweck der Werte
/// </summary>
/// <remarks>UTILTS SG9 CAV 7111</remarks>
[JsonProperty(Required = Required.Always, Order = 8, PropertyName = "verwendungszwecke")]
[JsonPropertyName("verwendungszwecke")]
public List<Verwendungszweck>? Verwendungszwecke { get; set; }
[JsonProperty(Required = Required.Always, Order = 8, PropertyName = "verwendungszweck")]
[JsonPropertyName("verwendungszweck")]
public Verwendungszweck Verwendungszwecke { get; set; }

/// <summary>
/// Eine Berechnungsformel enthält, falls sie notwendig ist <see cref="BerechnungsformelNotwendigkeit.BERECHNUNGSFORMEL_NOTWENDIG"/>,
Expand Down

0 comments on commit d3a98a9

Please sign in to comment.