22 lines
540 B
C#
22 lines
540 B
C#
// <copyright file="LibraryOptionInfoDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Api.Models.LibraryDtos;
|
|
|
|
/// <summary>
|
|
/// Library option info dto.
|
|
/// </summary>
|
|
public class LibraryOptionInfoDto
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets name.
|
|
/// </summary>
|
|
public string? Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether default enabled.
|
|
/// </summary>
|
|
public bool DefaultEnabled { get; set; }
|
|
}
|