namespace MediaBrowser.Model.Devices { public class DeviceQuery { /// /// Gets or sets a value indicating whether [supports content uploading]. /// /// null if [supports content uploading] contains no value, true if [supports content uploading]; otherwise, false. public bool? SupportsContentUploading { get; set; } /// /// Gets or sets a value indicating whether [supports unique identifier]. /// /// null if [supports unique identifier] contains no value, true if [supports unique identifier]; otherwise, false. public bool? SupportsUniqueIdentifier { get; set; } } }