diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-02-07 00:15:26 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-02-07 00:15:26 -0500 |
| commit | 0e49ccfd077bf114a2a663249d81a2891c46639d (patch) | |
| tree | bdd85319f0a705d4fdfe5fec8c37a4b5361b14e6 /MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs | |
| parent | b398b4eaabad357027dbcf2a210edcada8a984fd (diff) | |
update smart match feature
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs | 9 |
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[] { }; } } } |
