From b261ba96aace4b49fdef222abcbb28e9567ec3ab Mon Sep 17 00:00:00 2001 From: Vedant Koditkar Date: Fri, 15 Jul 2022 23:14:56 +0530 Subject: [PATCH] add timezone support to date property --- Src/Notion.Client/Models/PropertyValue/DatePropertyValue.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Src/Notion.Client/Models/PropertyValue/DatePropertyValue.cs b/Src/Notion.Client/Models/PropertyValue/DatePropertyValue.cs index 6182b197..cc0818ae 100644 --- a/Src/Notion.Client/Models/PropertyValue/DatePropertyValue.cs +++ b/Src/Notion.Client/Models/PropertyValue/DatePropertyValue.cs @@ -33,5 +33,11 @@ public class Date /// [JsonProperty("end")] public DateTime? End { get; set; } + + /// + /// Optional time zone information for start and end. Possible values are extracted from the IANA database and they are based on the time zones from Moment.js. + /// + [JsonProperty("time_zone")] + public string TimeZone { get; set; } } }