From 8bf43b680a750948260494c6f813c4744bea85c8 Mon Sep 17 00:00:00 2001 From: HirschleM Date: Tue, 15 Jul 2025 11:33:46 +0200 Subject: [PATCH] MH: BillingData DebuggerDisplay --- Shared/Services/BillingData.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Shared/Services/BillingData.cs b/Shared/Services/BillingData.cs index 248e21ec5..27a17f250 100644 --- a/Shared/Services/BillingData.cs +++ b/Shared/Services/BillingData.cs @@ -1,10 +1,12 @@ using System; using System.Collections.Generic; +using System.Diagnostics; using System.Linq; using System.Text; namespace BS.Shared.Services { + [DebuggerDisplay("{UnitCount} x {AmountPerUnit} x {RateFactor} = {GrossAmountTotal}")] public class BillingData { public DateTime? BillingPeriodStart { get; set; }