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 4a7443f commit abfcc53Copy full SHA for abfcc53
Src/Notion.Client/NotionClient.cs
@@ -0,0 +1,20 @@
1
+namespace Notion.Client
2
+{
3
+ public class NotionClient : INotionClient
4
+ {
5
+ public NotionClient(string authToken)
6
7
+ AuthToken = authToken;
8
+ Users = new UsersClient(new RestClient(authToken));
9
+ }
10
+
11
+ public string AuthToken { get; }
12
+ public IUsersClient Users { get; }
13
14
15
+ public interface INotionClient
16
17
+ string AuthToken { get; }
18
+ IUsersClient Users { get; }
19
20
+}
0 commit comments