mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
ConfigFileProvider will now add missing config values automatically, with a default value.
Added Handbrake and AtomicParsley wrappers for iPod video conversion.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum AtomicParsleyTitleType
|
||||
{
|
||||
None = 0,
|
||||
EpisodeNumber = 1,
|
||||
Both = 2
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model
|
||||
{
|
||||
public enum AuthenticationType
|
||||
{
|
||||
Anonymous = 0,
|
||||
Windows = 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user