# Blueink .NET SDK

The Blueink .NET SDK provides a convenient way to interact with the Blueink eSignature API from your .NET applications.

## GitHub Repository

The SDK is open source and available on GitHub: 
[Blueink .NET SDK](https://github.com/blueinkhq/blueink-client-dotnet) <GithubIcon width={16} height={16} />

## Installation

Install the package via NuGet:

```bash
dotnet add package Blueink.Client.Net
```

## Basic Usage

```csharp
using Blueink.Client.Net;

var client = new BlueinkClient("your_api_key_here");

// List Bundles
var bundles = await client.Bundles.List();
foreach (var bundle in bundles)
{
    Console.WriteLine($"ID: {bundle.Id}, Status: {bundle.Status}");
}
```

For more details and examples, visit the [GitHub repository](https://github.com/blueinkhq/blueink-client-dotnet).
