mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-23 22:18:39 -05:00
12 lines
321 B
C#
12 lines
321 B
C#
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Common.Configuration.General;
|
|
|
|
public sealed record SearchConfig
|
|
{
|
|
[ConfigurationKeyName("SEARCH_ENABLED")]
|
|
public bool SearchEnabled { get; init; } = true;
|
|
|
|
[ConfigurationKeyName("SEARCH_DELAY")]
|
|
public ushort SearchDelay { get; init; } = 30;
|
|
} |