diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2024-09-05 12:55:15 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2024-09-18 15:42:15 +0200 |
| commit | 7a2427bf07f9036d62c88a75855cd6dc7e8e3064 (patch) | |
| tree | 8a3211a265a36d35b2d707880d9ca504a5c5ccd4 /Jellyfin.Data | |
| parent | 569a41fc2a518672684b28a106241ecd8c9ceb67 (diff) | |
Add SessionInfoDto, DeviceInfoDto and implement JsonDelimitedArrayConverter.Write
Diffstat (limited to 'Jellyfin.Data')
| -rw-r--r-- | Jellyfin.Data/Dtos/DeviceOptionsDto.cs | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/Jellyfin.Data/Dtos/DeviceOptionsDto.cs b/Jellyfin.Data/Dtos/DeviceOptionsDto.cs index 392ef5ff4..aad578709 100644 --- a/Jellyfin.Data/Dtos/DeviceOptionsDto.cs +++ b/Jellyfin.Data/Dtos/DeviceOptionsDto.cs @@ -1,23 +1,22 @@ -namespace Jellyfin.Data.Dtos +namespace Jellyfin.Data.Dtos; + +/// <summary> +/// A dto representing custom options for a device. +/// </summary> +public class DeviceOptionsDto { /// <summary> - /// A dto representing custom options for a device. + /// Gets or sets the id. /// </summary> - public class DeviceOptionsDto - { - /// <summary> - /// Gets or sets the id. - /// </summary> - public int Id { get; set; } + public int Id { get; set; } - /// <summary> - /// Gets or sets the device id. - /// </summary> - public string? DeviceId { 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; } - } + /// <summary> + /// Gets or sets the custom name. + /// </summary> + public string? CustomName { get; set; } } |
