1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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; } } }