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>
|
2017-08-19 12:43:35 -07:00
|
|
|
|
public SyncTarget[] Targets { get; set; }
|
2014-12-16 22:30:31 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The options.</value>
|
2017-08-19 12:43:35 -07:00
|
|
|
|
public SyncJobOption[] Options { get; set; }
|
2015-02-19 20:44:01 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the quality options.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The quality options.</value>
|
2017-08-19 12:43:35 -07:00
|
|
|
|
public 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>
|
2017-08-19 12:43:35 -07:00
|
|
|
|
public SyncProfileOption[] ProfileOptions { get; set; }
|
2015-03-14 18:42:09 -07:00
|
|
|
|
|
2014-12-16 22:30:31 -07:00
|
|
|
|
public SyncDialogOptions()
|
|
|
|
|
{
|
2017-08-19 12:43:35 -07:00
|
|
|
|
Targets = new SyncTarget[] { };
|
|
|
|
|
Options = new SyncJobOption[] { };
|
|
|
|
|
QualityOptions = new SyncQualityOption[] { };
|
|
|
|
|
ProfileOptions = new SyncProfileOption[] { };
|
2014-12-16 22:30:31 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|