2014-07-31 02:09:23 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.FileOrganization
|
|
|
|
|
{
|
|
|
|
|
public class AutoOrganizeOptions
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the tv options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The tv options.</value>
|
|
|
|
|
public TvFileOrganizationOptions TvOptions { get; set; }
|
|
|
|
|
|
2015-09-23 04:12:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a list of smart match entries.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The smart match entries.</value>
|
2016-02-07 05:15:26 +00:00
|
|
|
|
public SmartMatchInfo[] SmartMatchInfos { get; set; }
|
2015-09-23 04:12:46 +00:00
|
|
|
|
|
2014-07-31 02:09:23 +00:00
|
|
|
|
public AutoOrganizeOptions()
|
|
|
|
|
{
|
|
|
|
|
TvOptions = new TvFileOrganizationOptions();
|
2016-02-07 05:15:26 +00:00
|
|
|
|
SmartMatchInfos = new SmartMatchInfo[]{};
|
2014-07-31 02:09:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|