From 76650c282bbf91f9635b0eb72294d5c07bfefb8f Mon Sep 17 00:00:00 2001 From: Adriano Serighelli Date: Tue, 12 Sep 2023 10:02:25 -0300 Subject: [PATCH] =?UTF-8?q?Altera=C3=A7=C3=A3o=20no=20padr=C3=A3o=20JSON.?= =?UTF-8?q?=20valores=20do=20objeto=20"item"=20alterados=20para=20nullable?= =?UTF-8?q?.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Download Faturas/Rootobject.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Download Faturas/Rootobject.cs b/Download Faturas/Rootobject.cs index 2fd291a..377d61d 100644 --- a/Download Faturas/Rootobject.cs +++ b/Download Faturas/Rootobject.cs @@ -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; } }