DeviceOptionsDto.cs 480 B

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