2015-09-23 06:12:46 +02:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.FileOrganization
|
|
|
|
|
|
{
|
|
|
|
|
|
public class SmartMatchInfo
|
|
|
|
|
|
{
|
2016-02-08 02:25:10 +01:00
|
|
|
|
public string ItemName { get; set; }
|
|
|
|
|
|
public string DisplayName { get; set; }
|
2015-09-23 06:12:46 +02:00
|
|
|
|
public FileOrganizerType OrganizerType { get; set; }
|
2016-02-07 00:15:26 -05:00
|
|
|
|
public string[] MatchStrings { get; set; }
|
2015-09-23 06:12:46 +02:00
|
|
|
|
|
|
|
|
|
|
public SmartMatchInfo()
|
|
|
|
|
|
{
|
2016-02-07 00:15:26 -05:00
|
|
|
|
MatchStrings = new string[] { };
|
2015-09-23 06:12:46 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|