Add dto for device options

This commit is contained in:
Patrick Barron
2021-07-13 19:30:11 -04:00
parent 06d682c296
commit 60ce0c9fa9
4 changed files with 30 additions and 6 deletions

View File

@@ -0,0 +1,23 @@
namespace Jellyfin.Data.Dtos
{
/// <summary>
/// A dto representing custom options for a device.
/// </summary>
public class DeviceOptionsDto
{
/// <summary>
/// Gets or sets the id.
/// </summary>
public int Id { get; set; }
/// <summary>
/// Gets or sets the device id.
/// </summary>
public string? DeviceId { get; set; }
/// <summary>
/// Gets or sets the custom name.
/// </summary>
public string? CustomName { get; set; }
}
}