using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
    public class SyncDialogOptions
    {
        /// 
        /// Gets or sets the targets.
        /// 
        /// The targets.
        public SyncTarget[] Targets { get; set; }
        /// 
        /// Gets or sets the options.
        /// 
        /// The options.
        public SyncJobOption[] Options { get; set; }
        /// 
        /// Gets or sets the quality options.
        /// 
        /// The quality options.
        public SyncQualityOption[] QualityOptions { get; set; }
        /// 
        /// Gets or sets the profile options.
        /// 
        /// The profile options.
        public SyncProfileOption[] ProfileOptions { get; set; }
     
        public SyncDialogOptions()
        {
            Targets = new SyncTarget[] { };
            Options = new SyncJobOption[] { };
            QualityOptions = new SyncQualityOption[] { };
            ProfileOptions = new SyncProfileOption[] { };
        }
    }
}