mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 00:56:17 +02:00
8 lines
216 B
C#
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;
|
|
} |