aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/UserViewDtos/SpecialViewOptionDto.cs
blob: 84b6b0958ce73e9beab48d4b82e3a91448bac6af (plain)
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; }
    }
}