Started working on the parser step - still a bit rough in my head.

This commit is contained in:
Joseph Milazzo 2025-05-09 06:35:08 -05:00
parent 4372d09ee4
commit 2e53987dca
7 changed files with 190 additions and 30 deletions

View file

@ -22,4 +22,12 @@ public sealed record ScannerOption
/// Skip LastModified checks
/// </summary>
public bool ForceScan { get; set; }
/// <summary>
/// Allow use of Filename Parsing
/// </summary>
public bool UseFilenameParsing { get; set; }
/// <summary>
/// Allow use of Internal Metadata
/// </summary>
public bool UseInternalMetadataParsing { get; set; }
}