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