using System.Collections.Generic; namespace MediaBrowser.Model.Sync { public class SyncScheduleRequest { /// /// Gets or sets the device identifier. /// /// The device identifier. public List DeviceIds { get; set; } /// /// Gets or sets the quality. /// /// The quality. public SyncQuality Quality { get; set; } public SyncScheduleRequest() { DeviceIds = new List(); } } }