You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
427 B
19 lines
427 B
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; }
|
|
}
|
|
}
|