Skip to content

Commit 37a7125

Browse files
Add database property in DatabaseQuery response
1 parent 0d3f322 commit 37a7125

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1-
namespace Notion.Client
1+
using System.Collections.Generic;
2+
using Newtonsoft.Json;
3+
4+
namespace Notion.Client
25
{
36
// ReSharper disable once ClassNeverInstantiated.Global
47
public class DatabaseQueryResponse : PaginatedList<IWikiDatabase>
58
{
9+
[JsonProperty("database")]
10+
public Dictionary<string, object> Database { get; set; }
611
}
712
}

0 commit comments

Comments
 (0)