using System.Collections.Generic; namespace MediaBrowser.Model.Sync { public class SyncDialogOptions { /// /// Gets or sets the targets. /// /// The targets. public List Targets { get; set; } /// /// Gets or sets the options. /// /// The options. public List Options { get; set; } public SyncDialogOptions() { Targets = new List(); Options = new List(); } } }