15 lines
490 B
C#
15 lines
490 B
C#
![]() |
namespace AutoScan.Options;
|
||
|
|
||
|
public class AutoScanOptions
|
||
|
{
|
||
|
public bool Enabled { get; set; }
|
||
|
public string? At { get; set; }
|
||
|
public bool FromDayBefore { get; set; }
|
||
|
public string? From { get; set; }
|
||
|
public string? To { get; set; }
|
||
|
public int MaxAmount { get; set; }
|
||
|
public string? MediaFolder { get; set; }
|
||
|
public ShinobiOptions? Shinobi { get; set; }
|
||
|
public ScannerOptions? Scanner { get; set; }
|
||
|
public ScreenshotOptions? Screenshot { get; set; }
|
||
|
}
|