namespace API.DTOs; /// /// DTO for requesting a folder to be scanned /// public sealed record ScanFolderDto { /// /// Api key for a user with Admin permissions /// public string ApiKey { get; set; } = default!; /// /// Folder Path to Scan /// /// JSON cannot accept /, so you may need to use // escaping on paths public string FolderPath { get; set; } = default!; /// /// If true, only runs the scan if a matches series is found. I.e. prevent library scans /// public bool AbortOnNoSeriesMatch { get; set; } = false; }