diff options
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs new file mode 100644 index 000000000..808c0b006 --- /dev/null +++ b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs @@ -0,0 +1,19 @@ + +using System; +using System.Collections.Generic; + +namespace MediaBrowser.Model.FileOrganization +{ + public class SmartMatchInfo + { + public Guid Id { get; set; } + public string Name { get; set; } + public FileOrganizerType OrganizerType { get; set; } + public List<string> MatchStrings { get; set; } + + public SmartMatchInfo() + { + MatchStrings = new List<string>(); + } + } +} |
