From 5563072853be3824fceef63fdd1842947abdda74 Mon Sep 17 00:00:00 2001 From: Vedant Koditkar Date: Sat, 2 Oct 2021 03:58:07 +0530 Subject: [PATCH] Add URL property to database object --- Src/Notion.Client/Models/Database/Database.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Src/Notion.Client/Models/Database/Database.cs b/Src/Notion.Client/Models/Database/Database.cs index ff008a90..6943048f 100644 --- a/Src/Notion.Client/Models/Database/Database.cs +++ b/Src/Notion.Client/Models/Database/Database.cs @@ -30,5 +30,11 @@ public class Database : IObject [JsonProperty("cover")] public FileObject Cover { get; set; } + + /// + /// The URL of the Notion database. + /// + [JsonProperty("url")] + public string Url { get; set; } } }