aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncDialogOptions.cs
blob: e55ca4f08535a8411cc36e2c6c693c21e74c3a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System.Collections.Generic;

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