Added configuration and wired it up.

This commit is contained in:
Sean Kelly 2021-09-27 20:18:50 +13:00
parent 36f58b64d6
commit 8a74a29700
7 changed files with 391 additions and 319 deletions

View file

@ -101,6 +101,13 @@ namespace FileManager
get => persistentDictionary.GetNonString<bool>(nameof(DecryptToLossy));
set => persistentDictionary.SetNonString(nameof(DecryptToLossy), value);
}
[Description("Decrypt to lossy format?")]
public bool SplitFilesByChapter
{
get => persistentDictionary.GetNonString<bool>(nameof(SplitFilesByChapter));
set => persistentDictionary.SetNonString(nameof(SplitFilesByChapter), value);
}
public enum BadBookAction
{