using System.Collections.Generic;
namespace MediaBrowser.Model.FileOrganization
{
public class AutoOrganizeOptions
{
///
/// Gets or sets the tv options.
///
/// The tv options.
public TvFileOrganizationOptions TvOptions { get; set; }
///
/// Gets or sets a list of smart match entries.
///
/// The smart match entries.
public List SmartMatchInfos { get; set; }
public AutoOrganizeOptions()
{
TvOptions = new TvFileOrganizationOptions();
SmartMatchInfos = new List();
}
}
}