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 SmartMatchInfo[] SmartMatchInfos { get; set; }
public AutoOrganizeOptions()
{
TvOptions = new TvFileOrganizationOptions();
SmartMatchInfos = new SmartMatchInfo[]{};
}
}
}