namespace RemoteExec.Server.Configuration;
///
/// Represents an individual API key configuration.
///
public class ApiKeyConfiguration
{
///
/// Gets or sets the API key value.
///
public required string Key { get; set; }
///
/// Gets or sets an optional description of the API key.
///
public string? Description { get; set; }
///
/// Gets or sets whether this API key is enabled.
/// Default is true.
///
public bool Enabled { get; set; } = true;
}