You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
627 B
25 lines
627 B
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<SyncOptions> Options { get; set; }
|
|
|
|
public SyncDialogOptions()
|
|
{
|
|
Targets = new List<SyncTarget>();
|
|
Options = new List<SyncOptions>();
|
|
}
|
|
}
|
|
}
|