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; }