jellyfin/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs

25 lines
682 B
C#
Raw Normal View History

2014-07-30 19:09:23 -07: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; }
/// <summary>
/// Gets or sets a list of smart match entries.
/// </summary>
/// <value>The smart match entries.</value>
2016-02-06 22:15:26 -07:00
public SmartMatchInfo[] SmartMatchInfos { get; set; }
2014-07-30 19:09:23 -07:00
public AutoOrganizeOptions()
{
TvOptions = new TvFileOrganizationOptions();
2016-02-06 22:15:26 -07:00
SmartMatchInfos = new SmartMatchInfo[]{};
2014-07-30 19:09:23 -07:00
}
}
}