aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-02-06 22:24:18 -0500
committerLuke <luke.pulverenti@gmail.com>2016-02-06 22:24:18 -0500
commitb398b4eaabad357027dbcf2a210edcada8a984fd (patch)
tree9dad1e9409b6c1eb0f4110d4795ee276546aba6d /MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
parentbc6c0bd0b7ec6f57651c21726f66f9cf7a69cba3 (diff)
parentc02635c2569b0dfe2144c337cc0f8591e55c528c (diff)
Merge pull request #1432 from softworkz/SeriesDetectionV2
Supersedes #1192: Auto-Organize - Added feature to remember/persist series matching in manual organization dialog
Diffstat (limited to 'MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs')
-rw-r--r--MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs19
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>();
+ }
+ }
+}