jellyfin/MediaBrowser.Model/Sync/SyncDialogOptions.cs

37 lines
1.1 KiB
C#
Raw Normal View History

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