jellyfin-server/MediaBrowser.Model/Sync/SyncDialogOptions.cs

25 lines
631 B
C#
Raw Normal View History

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; }
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>();
2014-12-17 05:30:31 +00:00
}
}
}