mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2025-06-22 04:34:37 +00:00
19 lines
382 B
C#
19 lines
382 B
C#
// 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;
|
|
}
|
|
}
|
|
}
|