Skip to content

Commit 4fa6bf5

Browse files
Merge pull request #154 from notion-dotnet/feature/132-database-object-now-contains-url
Add URL property to database object
2 parents 19487c3 + 5563072 commit 4fa6bf5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Src/Notion.Client/Models/Database/Database.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,11 @@ public class Database : IObject
3030

3131
[JsonProperty("cover")]
3232
public FileObject Cover { get; set; }
33+
34+
/// <summary>
35+
/// The URL of the Notion database.
36+
/// </summary>
37+
[JsonProperty("url")]
38+
public string Url { get; set; }
3339
}
3440
}

0 commit comments

Comments
 (0)