diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-02-06 22:24:18 -0500 |
|---|---|---|
| committer | Luke <luke.pulverenti@gmail.com> | 2016-02-06 22:24:18 -0500 |
| commit | b398b4eaabad357027dbcf2a210edcada8a984fd (patch) | |
| tree | 9dad1e9409b6c1eb0f4110d4795ee276546aba6d /MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs | |
| parent | bc6c0bd0b7ec6f57651c21726f66f9cf7a69cba3 (diff) | |
| parent | c02635c2569b0dfe2144c337cc0f8591e55c528c (diff) | |
Merge pull request #1432 from softworkz/SeriesDetectionV2
Supersedes #1192: Auto-Organize - Added feature to remember/persist series matching in manual organization dialog
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs')
| -rw-r--r-- | MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs b/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs index ae701ea68..071897b51 100644 --- a/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs +++ b/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs @@ -1,4 +1,5 @@ +using System.Collections.Generic; namespace MediaBrowser.Model.FileOrganization { public class AutoOrganizeOptions @@ -9,9 +10,16 @@ namespace MediaBrowser.Model.FileOrganization /// <value>The tv options.</value> public TvFileOrganizationOptions TvOptions { get; set; } + /// <summary> + /// Gets or sets a list of smart match entries. + /// </summary> + /// <value>The smart match entries.</value> + public List<SmartMatchInfo> SmartMatchInfos { get; set; } + public AutoOrganizeOptions() { TvOptions = new TvFileOrganizationOptions(); + SmartMatchInfos = new List<SmartMatchInfo>(); } } } |
