mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-23 22:18:39 -05:00
9 lines
202 B
C#
9 lines
202 B
C#
using Microsoft.Extensions.Configuration;
|
|
|
|
namespace Common.Configuration.General;
|
|
|
|
public sealed record DryRunConfig
|
|
{
|
|
[ConfigurationKeyName("DRY_RUN")]
|
|
public bool IsDryRun { get; init; }
|
|
} |