2014-07-30 22:09:23 -04:00
|
|
|
|
|
2015-09-23 06:12:46 +02:00
|
|
|
|
using System.Collections.Generic;
|
2014-07-30 22:09:23 -04: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 06:12:46 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets a list of smart match entries.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The smart match entries.</value>
|
|
|
|
|
|
public List<SmartMatchInfo> SmartMatchInfos { get; set; }
|
|
|
|
|
|
|
2014-07-30 22:09:23 -04:00
|
|
|
|
public AutoOrganizeOptions()
|
|
|
|
|
|
{
|
|
|
|
|
|
TvOptions = new TvFileOrganizationOptions();
|
2015-09-23 06:12:46 +02:00
|
|
|
|
SmartMatchInfos = new List<SmartMatchInfo>();
|
2014-07-30 22:09:23 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|