Files
RemoteExec/RemoteExec.Server/Configuration/ApiKeyConfiguration.cs
T

8 lines
216 B
C#

namespace RemoteExec.Server.Configuration;
public class ApiKeyConfiguration
{
public required string Key { get; set; }
public string? Description { get; set; }
public bool Enabled { get; set; } = true;
}