a1ea34bc01
Consolidate data and config into separate folders that will be expected to be mapped in the container Reviewed-on: #1 Co-authored-by: Huy Nguyen <ecenshu@gmail.com> Co-committed-by: Huy Nguyen <ecenshu@gmail.com>
14 lines
375 B
C#
14 lines
375 B
C#
namespace TinfoilVibeServer.Models;
|
||
|
||
/// <summary>
|
||
/// Top‑level configuration – maps directly to appsettings.json.
|
||
/// </summary>
|
||
public sealed record AppSettings(
|
||
string[] RootDirectories,
|
||
string[] WhitelistExtensions,
|
||
string[] RomExtensions,
|
||
string CredentialsFile,
|
||
string FingerprintsFile,
|
||
string BlacklistFile,
|
||
int MaxFailedAttempts
|
||
); |