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