aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-07 00:15:26 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-07 00:15:26 -0500
commit0e49ccfd077bf114a2a663249d81a2891c46639d (patch)
treebdd85319f0a705d4fdfe5fec8c37a4b5361b14e6 /MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs
parentb398b4eaabad357027dbcf2a210edcada8a984fd (diff)
update smart match feature
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs')
-rw-r--r--MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs b/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs
index 071897b51..830d55bf5 100644
--- a/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs
+++ b/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs
@@ -1,5 +1,4 @@

-using System.Collections.Generic;
namespace MediaBrowser.Model.FileOrganization
{
public class AutoOrganizeOptions
@@ -14,12 +13,12 @@ namespace MediaBrowser.Model.FileOrganization
/// Gets or sets a list of smart match entries.
/// </summary>
/// <value>The smart match entries.</value>
- public List<SmartMatchInfo> SmartMatchInfos { get; set; }
+ public SmartMatchInfo[] SmartMatchInfos { get; set; }
public AutoOrganizeOptions()
{
TvOptions = new TvFileOrganizationOptions();
- SmartMatchInfos = new List<SmartMatchInfo>();
+ SmartMatchInfos = new SmartMatchInfo[]{};
}
}
}