2014-12-17 05:30:31 +00: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-17 04:29:53 +00:00
|
|
|
|
public List<SyncJobOption> Options { get; set; }
|
2015-02-20 03:44:01 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the quality options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The quality options.</value>
|
2015-03-07 22:43:53 +00:00
|
|
|
|
public List<SyncQualityOption> QualityOptions { get; set; }
|
2015-03-15 01:42:09 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the profile options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The profile options.</value>
|
2015-03-15 04:17:35 +00:00
|
|
|
|
public List<SyncProfileOption> ProfileOptions { get; set; }
|
2015-03-15 01:42:09 +00:00
|
|
|
|
|
2014-12-17 05:30:31 +00:00
|
|
|
|
public SyncDialogOptions()
|
|
|
|
|
{
|
|
|
|
|
Targets = new List<SyncTarget>();
|
2015-01-17 04:29:53 +00:00
|
|
|
|
Options = new List<SyncJobOption>();
|
2015-03-08 04:44:31 +00:00
|
|
|
|
QualityOptions = new List<SyncQualityOption>();
|
2015-03-15 04:17:35 +00:00
|
|
|
|
ProfileOptions = new List<SyncProfileOption>();
|
2014-12-17 05:30:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|