aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncScheduleRequest.cs
blob: 076548f57c47f827dd8c92d4f241adf06553d9ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System.Collections.Generic;

namespace MediaBrowser.Model.Sync
{
    public class SyncScheduleRequest
    {
        /// <summary>
        /// Gets or sets the device identifier.
        /// </summary>
        /// <value>The device identifier.</value>
        public List<string> TargetIds { get; set; }
        /// <summary>
        /// Gets or sets the quality.
        /// </summary>
        /// <value>The quality.</value>
        public SyncQuality Quality { get; set; }

        public SyncScheduleRequest()
        {
            TargetIds = new List<string>();
        }
    }
}