This commit is contained in:
Paul Schneider 2026-04-19 20:36:03 +01:00
commit 5620213cf5
5 changed files with 33 additions and 47 deletions

View file

@ -2,9 +2,9 @@ namespace Yavsc.Models.Billing
{
public static class BillingCodes
{
public const string Rdv = "Rdv";
public const string MBrush = "MBrush";
public const string Rdv = nameof(Rdv);
public const string MBrush = nameof(MBrush);
public const string Brush = "Brush";
public const string Brush = nameof(Brush);
}
}