# Colleqtive C# API Library

The Colleqtive C# SDK provides convenient access to the [Colleqtive REST API](https://developer.colleqtive.com/api) from applications written in   C#.

## Installation

Install the package from [NuGet](https://www.nuget.org/packages/Colleqtive.Sdk):

```bash
dotnet add package Colleqtive.Sdk
```

## Requirements

This library requires .NET Standard 2.0 or later.

## Usage

See the [`examples`](examples) directory for complete and runnable examples.

```csharp
ColleqtiveClient client = new();

StoreListStoresParams parameters = new();

var response = await client.Stores.ListStores(parameters);

Console.WriteLine(response);
```