diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-27 01:18:39 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-07-27 01:18:39 -0400 |
| commit | d270b10db67eeaa16a35920d5d86b1975dfffd16 (patch) | |
| tree | 8ecb86ddaf4f5ac495ba64ff16fcfb682ec4ea40 /MediaBrowser.Model/FileOrganization/TvFileOrganizationOptions.cs | |
| parent | 6652d856f9047b7669b3b00ea5c8cc42ba05256a (diff) | |
move auto-organize to plugin
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/TvFileOrganizationOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/FileOrganization/TvFileOrganizationOptions.cs | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/MediaBrowser.Model/FileOrganization/TvFileOrganizationOptions.cs b/MediaBrowser.Model/FileOrganization/TvFileOrganizationOptions.cs deleted file mode 100644 index 973ecf6e7..000000000 --- a/MediaBrowser.Model/FileOrganization/TvFileOrganizationOptions.cs +++ /dev/null @@ -1,40 +0,0 @@ - -namespace MediaBrowser.Model.FileOrganization -{ - public class TvFileOrganizationOptions - { - public bool IsEnabled { get; set; } - public int MinFileSizeMb { get; set; } - public string[] LeftOverFileExtensionsToDelete { get; set; } - public string[] WatchLocations { get; set; } - - public string SeasonFolderPattern { get; set; } - - public string SeasonZeroFolderName { get; set; } - - public string EpisodeNamePattern { get; set; } - public string MultiEpisodeNamePattern { get; set; } - - public bool OverwriteExistingEpisodes { get; set; } - - public bool DeleteEmptyFolders { get; set; } - - public bool CopyOriginalFile { get; set; } - - public TvFileOrganizationOptions() - { - MinFileSizeMb = 50; - - LeftOverFileExtensionsToDelete = new string[] { }; - - WatchLocations = new string[] { }; - - EpisodeNamePattern = "%sn - %sx%0e - %en.%ext"; - MultiEpisodeNamePattern = "%sn - %sx%0e-x%0ed - %en.%ext"; - SeasonFolderPattern = "Season %s"; - SeasonZeroFolderName = "Season 0"; - - CopyOriginalFile = false; - } - } -} |
