Files
RemoteExec/src/RemoteExec.Server/Configuration/AuthenticationConfiguration.cs
T
2025-12-30 13:32:45 +01:00

12 lines
319 B
C#

namespace RemoteExec.Server.Configuration;
/// <summary>
/// Configuration for API key authentication.
/// </summary>
public class AuthenticationConfiguration
{
/// <summary>
/// Gets or sets the list of configured API keys.
/// </summary>
public List<ApiKeyConfiguration> ApiKeys { get; set; } = [];
}