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