2015-09-23 04:12:46 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.FileOrganization
|
|
|
|
|
{
|
|
|
|
|
public class SmartMatchInfo
|
|
|
|
|
{
|
2016-02-07 05:15:26 +00:00
|
|
|
|
public string Id { get; set; }
|
2015-09-23 04:12:46 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|