aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncDialogOptions.cs
blob: 0154b16ec1badbaf5df0209c91bc291fcdb81ede (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
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>();
        }
    }
}