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; }
        /// 
        /// Gets or sets the quality options.
        /// 
        /// The quality options.
        public List QualityOptions { get; set; }
        /// 
        /// Gets or sets the profile options.
        /// 
        /// The profile options.
        public List ProfileOptions { get; set; }
     
        public SyncDialogOptions()
        {
            Targets = new List();
            Options = new List();
            QualityOptions = new List();
            ProfileOptions = new List();
        }
    }
}