jellyfin/MediaBrowser.Model/Sync/SyncDialogOptions.cs
Luke Pulverenti 0e02e0559d sync updates
2015-01-16 23:29:53 -05:00

25 lines
631 B
C#

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>
public List<SyncJobOption> Options { get; set; }
public SyncDialogOptions()
{
Targets = new List<SyncTarget>();
Options = new List<SyncJobOption>();
}
}
}