aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/FileOrganization/SmartMatchInfo.cs
blob: 28c99b89bb457f74d3558a686756ecd7c9bc5335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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[] { };
        }
    }
}