From 8aab151a7edd1e38e976a4065d629890b0a30771 Mon Sep 17 00:00:00 2001 From: mads4990 <35385390+mads4990@users.noreply.github.com> Date: Thu, 20 Aug 2020 11:27:17 -0700 Subject: [PATCH] Update CalendarEvent.cs Wrong data type --- Source/Podio .NET/Models/CalendarEvent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Podio .NET/Models/CalendarEvent.cs b/Source/Podio .NET/Models/CalendarEvent.cs index f0ecfac..a930abc 100644 --- a/Source/Podio .NET/Models/CalendarEvent.cs +++ b/Source/Podio .NET/Models/CalendarEvent.cs @@ -45,6 +45,6 @@ public class CalendarEvent public Application App { get; set; } [JsonProperty("color")] - public Application Color { get; set; } + public string Color { get; set; } } -} \ No newline at end of file +}