Start of the metadata/filename on/off stuff.
This commit is contained in:
parent
bc41b0256e
commit
3fe5933358
8 changed files with 46 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue