DeviceOptionsDto.cs 554 B

1234567891011121314151617181920212223
  1. namespace Jellyfin.Data.Dtos
  2. {
  3. /// <summary>
  4. /// A dto representing custom options for a device.
  5. /// </summary>
  6. public class DeviceOptionsDto
  7. {
  8. /// <summary>
  9. /// Gets or sets the id.
  10. /// </summary>
  11. public int Id { get; set; }
  12. /// <summary>
  13. /// Gets or sets the device id.
  14. /// </summary>
  15. public string? DeviceId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the custom name.
  18. /// </summary>
  19. public string? CustomName { get; set; }
  20. }
  21. }