jellyfin/MediaBrowser.Model/Sync/SyncDialogOptions.cs

37 lines
1.1 KiB
C#
Raw Normal View History

2014-12-16 22:30:31 -07:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncDialogOptions
{
/// <summary>
/// Gets or sets the targets.
/// </summary>
/// <value>The targets.</value>
public List<SyncTarget> Targets { get; set; }
/// <summary>
/// Gets or sets the options.
/// </summary>
/// <value>The options.</value>
2015-01-16 21:29:53 -07:00
public List<SyncJobOption> Options { get; set; }
/// <summary>
/// Gets or sets the quality options.
/// </summary>
/// <value>The quality options.</value>
2015-03-07 15:43:53 -07:00
public List<SyncQualityOption> QualityOptions { get; set; }
2015-03-14 18:42:09 -07:00
/// <summary>
/// Gets or sets the profile options.
/// </summary>
/// <value>The profile options.</value>
2015-03-14 21:17:35 -07:00
public List<SyncProfileOption> ProfileOptions { get; set; }
2015-03-14 18:42:09 -07:00
2014-12-16 22:30:31 -07:00
public SyncDialogOptions()
{
Targets = new List<SyncTarget>();
2015-01-16 21:29:53 -07:00
Options = new List<SyncJobOption>();
2015-03-07 21:44:31 -07:00
QualityOptions = new List<SyncQualityOption>();
2015-03-14 21:17:35 -07:00
ProfileOptions = new List<SyncProfileOption>();
2014-12-16 22:30:31 -07:00
}
}
}