Start of the metadata/filename on/off stuff.

This commit is contained in:
Joseph Milazzo 2025-05-03 17:40:11 -05:00
parent bc41b0256e
commit 3fe5933358
8 changed files with 46 additions and 4 deletions

View file

@ -115,4 +115,16 @@ public class LibraryBuilder : IEntityBuilder<Library>
_library.AllowScrobbling = allowScrobbling;
return this;
}
public LibraryBuilder WithAllowFilenameParsing(bool allow)
{
_library.AllowFilenameParsing = allow;
return this;
}
public LibraryBuilder WithAllowMetadataParsing(bool allow)
{
_library.AllowMetadataParsing = allow;
return this;
}
}