namespace Jellyfin.Data.Dtos
{
///
/// A dto representing custom options for a device.
///
public class DeviceOptionsDto
{
///
/// Gets or sets the id.
///
public int Id { get; set; }
///
/// Gets or sets the device id.
///
public string? DeviceId { get; set; }
///
/// Gets or sets the custom name.
///
public string? CustomName { get; set; }
}
}