Generate api client with nswag

This commit is contained in:
2025-01-22 08:55:37 -03:00
parent 7275aef60b
commit 06f60eec10
5 changed files with 6025 additions and 0 deletions

View File

@ -0,0 +1,18 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
namespace Tribufu
{
public class TribufuApiOptions
{
public string BaseUrl { get; set; }
public string ApiKey { get; set; }
public TribufuApiOptions(string baseUrl, string apiKey)
{
BaseUrl = baseUrl;
ApiKey = apiKey;
}
}
}