From 17d75c4a98db5b45e485377bb5897883f8af7343 Mon Sep 17 00:00:00 2001 From: Adriano Trentim Augusto Date: Fri, 14 Jan 2022 12:43:11 -0300 Subject: [PATCH] =?UTF-8?q?Altera=C3=A7=C3=A3o=20para=20public=20das=20pro?= =?UTF-8?q?priedades=20Email=20e=20Phone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Models/Common/CustomFields/PersonCustomField.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Pipedrive.net/Models/Common/CustomFields/PersonCustomField.cs b/src/Pipedrive.net/Models/Common/CustomFields/PersonCustomField.cs index 9e04740c..49bdbf45 100644 --- a/src/Pipedrive.net/Models/Common/CustomFields/PersonCustomField.cs +++ b/src/Pipedrive.net/Models/Common/CustomFields/PersonCustomField.cs @@ -9,10 +9,10 @@ public class PersonCustomField : ICustomField public string Name { get; set; } [JsonProperty("email")] - List Email { get; set; } + public List Email { get; set; } [JsonProperty("phone")] - List Phone { get; set; } + public List Phone { get; set; } [JsonProperty("value")] public long Value { get; set; }