aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs')
-rw-r--r--MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs9
1 files changed, 3 insertions, 6 deletions
diff --git a/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
index 808c0b006..a6bc66e49 100644
--- a/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
+++ b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
@@ -1,19 +1,16 @@

-using System;
-using System.Collections.Generic;
-
namespace MediaBrowser.Model.FileOrganization
{
public class SmartMatchInfo
{
- public Guid Id { get; set; }
+ public string Id { get; set; }
public string Name { get; set; }
public FileOrganizerType OrganizerType { get; set; }
- public List<string> MatchStrings { get; set; }
+ public string[] MatchStrings { get; set; }
public SmartMatchInfo()
{
- MatchStrings = new List<string>();
+ MatchStrings = new string[] { };
}
}
}