aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-14 16:35:09 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-14 16:35:09 -0500
commitdaa0b6cd0ecefd60611752802d062c15e6da85de (patch)
treef58a16e47afed9b61471e3871280faa9fc8bd951 /MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
parent7d26b8995f313917829573a7cd96c37decc9158a (diff)
parentfd5f12e76227d96c52cdc31b67ef9543b485169b (diff)
Merge branch 'beta'
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs')
-rw-r--r--MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
new file mode 100644
index 000000000..28c99b89b
--- /dev/null
+++ b/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
@@ -0,0 +1,16 @@
+
+namespace MediaBrowser.Model.FileOrganization
+{
+ public class SmartMatchInfo
+ {
+ public string ItemName { get; set; }
+ public string DisplayName { get; set; }
+ public FileOrganizerType OrganizerType { get; set; }
+ public string[] MatchStrings { get; set; }
+
+ public SmartMatchInfo()
+ {
+ MatchStrings = new string[] { };
+ }
+ }
+}