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!;
}