aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncScheduleRequest.cs
blob: e1ba4b1154630b0d6b944f3cd99a034e7a895c6d (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> DeviceIds { get; set; }
        /// <summary>
        /// Gets or sets the quality.
        /// </summary>
        /// <value>The quality.</value>
        public SyncQuality Quality { get; set; }

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