jellyfin/MediaBrowser.Model/FileOrganization/AutoOrganizeOptions.cs

25 lines
682 B
C#
Raw Normal View History

2014-07-31 04:09:23 +02: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-07 06:15:26 +01:00
public SmartMatchInfo[] SmartMatchInfos { get; set; }
2014-07-31 04:09:23 +02:00
public AutoOrganizeOptions()
{
TvOptions = new TvFileOrganizationOptions();
2016-02-07 06:15:26 +01:00
SmartMatchInfos = new SmartMatchInfo[]{};
2014-07-31 04:09:23 +02:00
}
}
}