Added configuration and wired it up.
This commit is contained in:
parent
36f58b64d6
commit
8a74a29700
7 changed files with 391 additions and 319 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue