We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 228d91f commit 42bfa08Copy full SHA for 42bfa08
Src/Notion.Client/NotionClient.cs
@@ -6,6 +6,7 @@ public interface INotionClient
6
IDatabasesClient Databases { get; }
7
IPagesClient Pages { get; }
8
ISearchClient Search { get; }
9
+ IBlocksClient Blocks { get; }
10
}
11
12
public class NotionClient : INotionClient
@@ -17,11 +18,13 @@ public NotionClient(ClientOptions options)
17
18
Databases = new DatabasesClient(restClient);
19
Pages = new PagesClient(restClient);
20
Search = new SearchClient(restClient);
21
+ Blocks = new BlocksClient(restClient);
22
23
24
public IUsersClient Users { get; }
25
public IDatabasesClient Databases { get; }
26
public IPagesClient Pages { get; }
27
public ISearchClient Search { get; }
28
+ public IBlocksClient Blocks { get; }
29
30
0 commit comments