aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserViewDtos/SpecialViewOptionDto.cs
blob: 314b6a3248ad4cb1624284eafd6c109be1781c58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
}