DeviceQuery.cs 780 B

1234567891011121314151617
  1. 
  2. namespace MediaBrowser.Model.Devices
  3. {
  4. public class DeviceQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets a value indicating whether [supports content uploading].
  8. /// </summary>
  9. /// <value><c>null</c> if [supports content uploading] contains no value, <c>true</c> if [supports content uploading]; otherwise, <c>false</c>.</value>
  10. public bool? SupportsContentUploading { get; set; }
  11. /// <summary>
  12. /// Gets or sets a value indicating whether [supports unique identifier].
  13. /// </summary>
  14. /// <value><c>null</c> if [supports unique identifier] contains no value, <c>true</c> if [supports unique identifier]; otherwise, <c>false</c>.</value>
  15. public bool? SupportsUniqueIdentifier { get; set; }
  16. }
  17. }