Alteração no padrão JSON. valores do objeto "item" alterados para nullable.

This commit is contained in:
Adriano Serighelli 2023-09-12 10:02:25 -03:00
parent 18c533e848
commit 76650c282b

View File

@ -114,7 +114,7 @@
public float billed { get; set; }
public float rate { get; set; }
public float? rate { get; set; }
public float charge { get; set; }
@ -128,7 +128,7 @@
public string name { get; set; }
public float taxable { get; set; }
public float? taxable { get; set; }
public bool summable { get; set; }
}