Move code to src folder

This commit is contained in:
Stone_Red
2025-12-30 13:32:45 +01:00
parent b9afb74d13
commit 579ab691ad
59 changed files with 0 additions and 45 deletions
@@ -0,0 +1,12 @@
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; } = [];
}