aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization
diff options
context:
space:
mode:
authorsoftworkz <softworkz@hotmail.com>2016-02-08 02:25:10 +0100
committersoftworkz <softworkz@hotmail.com>2016-02-12 21:42:10 +0100
commit59c9081f4b25b96f7cc9203a319ad19328651772 (patch)
treee165028a81b196c7e222973f3ae49771f62a41c8 /MediaBrowser.Model/FileOrganization
parent5a2778f6d833b591dfe52fa03de19324a1253250 (diff)
Auto-Organize - Feature to remember/persist series matching in manual organization dialog: Changed to match against plain library name inste
Diffstat (limited to 'MediaBrowser.Model/FileOrganization')
-rw-r--r--MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
index a6bc66e499..28c99b89bb 100644
--- a/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
+++ b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
@@ -3,8 +3,8 @@ namespace MediaBrowser.Model.FileOrganization
{
public class SmartMatchInfo
{
- public string Id { get; set; }
- public string Name { get; set; }
+ public string ItemName { get; set; }
+ public string DisplayName { get; set; }
public FileOrganizerType OrganizerType { get; set; }
public string[] MatchStrings { get; set; }