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[] { }; } } }