diff --git a/src/Pipedrive.net/Models/Common/Option.cs b/src/Pipedrive.net/Models/Common/Option.cs index 31038087..a8c1a134 100644 --- a/src/Pipedrive.net/Models/Common/Option.cs +++ b/src/Pipedrive.net/Models/Common/Option.cs @@ -1,9 +1,13 @@ -namespace Pipedrive +using Newtonsoft.Json; + +namespace Pipedrive { public class Option { + [JsonProperty("id")] public string Id { get; set; } + [JsonProperty("label")] public string Label { get; set; } } }