Skip to content

Commit

Permalink
Change decimal to string
Browse files Browse the repository at this point in the history
  • Loading branch information
levtoji committed Nov 6, 2024
1 parent 99007f0 commit f260d1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BO4E/COM/Rechnungsposition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ protected DateTime? _Ausfuehrungsdatum
[JsonPropertyName("zuschlag")]
[ProtoMember(31)]
[JsonPropertyOrder(31)]
public decimal? Zuschlag { get; set; }
public string? Zuschlag { get; set; }

/// <summary>
/// Abschlag
Expand All @@ -256,5 +256,5 @@ protected DateTime? _Ausfuehrungsdatum
[JsonPropertyName("abschlag")]
[ProtoMember(32)]
[JsonPropertyOrder(32)]
public decimal? Abschlag { get; set; }
public string? Abschlag { get; set; }
}

0 comments on commit f260d1c

Please sign in to comment.