aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Dtos/DeviceOptionsDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Dtos/DeviceOptionsDto.cs')
-rw-r--r--Jellyfin.Data/Dtos/DeviceOptionsDto.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Jellyfin.Data/Dtos/DeviceOptionsDto.cs b/Jellyfin.Data/Dtos/DeviceOptionsDto.cs
new file mode 100644
index 000000000..392ef5ff4
--- /dev/null
+++ b/Jellyfin.Data/Dtos/DeviceOptionsDto.cs
@@ -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; }
+ }
+}