From ac4a10c631b475fa1daec6e4696cdf2d9b9639d2 Mon Sep 17 00:00:00 2001 From: Shikhar9425 <72194627+Shikhar9425@users.noreply.github.com> Date: Sat, 11 Oct 2025 21:49:55 +0530 Subject: [PATCH] Create add-notion-sdk-dotnet.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ✨ Added Notion SDK for .NET – A simple and easy to use client for the Notion API --- add-notion-sdk-dotnet.js | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 add-notion-sdk-dotnet.js diff --git a/add-notion-sdk-dotnet.js b/add-notion-sdk-dotnet.js new file mode 100644 index 00000000..4bd2bd01 --- /dev/null +++ b/add-notion-sdk-dotnet.js @@ -0,0 +1,35 @@ +/** + * ✨ Added Notion SDK for .NET – A simple and easy to use client for the Notion API + * Provides integration with Notion’s API for .NET developers with simple initialization, + * dependency injection, and database querying support. + */ + +const notionSdkDotNet = { + name: "Notion SDK for .NET", + description: + "A simple and easy to use client for the Notion API with support for dependency injection, database querying, and advanced filters.", + language: ".NET / C#", + features: [ + "Lightweight Notion API client", + "Supports dependency injection", + "Database querying and filtering", + "Supports Databases, Pages, Blocks, Comments, Users, Search endpoints", + "Internal logging via ILoggerFactory" + ], + install: { + cli: "dotnet add package Notion.Net" + }, + usageExample: ` +var client = NotionClientFactory.Create(new ClientOptions { + AuthToken = "" +}); +var usersList = await client.Users.ListAsync(); + `, + github: "https://github.com/dvcrn/notion.net", + nuget: "https://www.nuget.org/packages/Notion.Net/", + addedBy: "Shikhar Natani", + addedOn: new Date().toISOString() +}; + +// Export for the PR +export default notionSdkDotNet;