Files
btcpayserver/BTCPayServer/Plugins/Dotnet/Internal/RuntimeConfig.cs

12 lines
321 B
C#

#nullable enable
// Copyright (c) Nate McMaster.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace BTCPayServer.Plugins.Dotnet.Internal
{
internal class RuntimeConfig
{
public RuntimeOptions? runtimeOptions { get; set; }
}
}