2025-02-13 19:13:21 -03:00
|
|
|
namespace AutoScan.Options;
|
|
|
|
|
2025-02-14 20:32:04 -03:00
|
|
|
public record AutoScanOptions
|
2025-02-13 19:13:21 -03:00
|
|
|
{
|
2025-02-18 19:21:19 -03:00
|
|
|
public bool RunDry { get; set; } = false;
|
2025-02-13 19:13:21 -03:00
|
|
|
public bool Enabled { get; set; }
|
2025-02-15 15:55:29 -03:00
|
|
|
public string At { get; set; } = "06:00";
|
2025-02-13 19:13:21 -03:00
|
|
|
public bool FromDayBefore { get; set; }
|
2025-02-15 15:55:29 -03:00
|
|
|
public string From { get; set; } = "23:00";
|
|
|
|
public string To { get; set; } = "1:00";
|
2025-02-13 19:13:21 -03:00
|
|
|
public int MaxAmount { get; set; }
|
|
|
|
public string? MediaFolder { get; set; }
|
|
|
|
public ScannerOptions? Scanner { get; set; }
|
2025-03-26 15:38:04 -03:00
|
|
|
public bool RemoveOriginalFiles { get; set; }
|
|
|
|
public bool RemoveDetectionFiles { get; set; }
|
2025-02-13 19:13:21 -03:00
|
|
|
}
|