| 123456789101112131415161718 | namespace Jellyfin.Api.Models.UserViewDtos{    /// <summary>    /// Special view option dto.    /// </summary>    public class SpecialViewOptionDto    {        /// <summary>        /// Gets or sets view option name.        /// </summary>        public string? Name { get; set; }        /// <summary>        /// Gets or sets view option id.        /// </summary>        public string? Id { get; set; }    }}
 |