DeviceOptions.cs 478 B

1234567891011121314151617
  1. 
  2. namespace MediaBrowser.Model.Devices
  3. {
  4. public class DeviceOptions
  5. {
  6. /// <summary>
  7. /// Gets or sets the name of the custom.
  8. /// </summary>
  9. /// <value>The name of the custom.</value>
  10. public string CustomName { get; set; }
  11. /// <summary>
  12. /// Gets or sets the camera upload path.
  13. /// </summary>
  14. /// <value>The camera upload path.</value>
  15. public string CameraUploadPath { get; set; }
  16. }
  17. }