mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 23:42:03 +02:00
12 lines
319 B
C#
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; } = [];
|
|
} |