22 lines
516 B
C#
22 lines
516 B
C#
// <copyright file="SpecialViewOptionDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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; }
|
|
}
|