Skip to content

Commit

Permalink
Add Marktrolle zu Technische Ressource
Browse files Browse the repository at this point in the history
  • Loading branch information
FreddyFox892 committed Nov 27, 2024
1 parent ffd57e7 commit 008c8e4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions BO4E/BO/TechnischeRessource.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.Text.Json.Serialization;
using BO4E.COM;
Expand Down Expand Up @@ -259,4 +260,14 @@ public class TechnischeRessource : BusinessObject
[ProtoMember(29)]
[JsonPropertyOrder(29)]
public InformationWeitereTechnischeRessource? WeitereEinrichtung { get; set; }

/// <summary>
/// Ergänzt die Marktrollen zu der Technischen Ressource
/// </summary>
[JsonProperty(Order = 30, PropertyName = "marktrollen")]
[JsonPropertyName("marktrollen")]
[ProtoMember(30)]
[JsonPropertyOrder(30)]
[NonOfficial(NonOfficialCategory.CUSTOMER_REQUIREMENTS)]
public List<MarktpartnerDetails>? Marktrollen { get; set; } // ToDo: evaluate this
}

0 comments on commit 008c8e4

Please sign in to comment.