2024-08-30 13:29:48 +00:00
|
|
|
namespace Jellyfin.Api.Models.LibraryDtos;
|
2023-01-31 11:18:10 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Library option info dto.
|
|
|
|
/// </summary>
|
|
|
|
public class LibraryOptionInfoDto
|
2020-06-19 19:10:10 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
/// Gets or sets name.
|
2020-06-19 19:10:10 +00:00
|
|
|
/// </summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
public string? Name { get; set; }
|
2020-06-19 19:10:10 +00:00
|
|
|
|
2023-01-31 11:18:10 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether default enabled.
|
|
|
|
/// </summary>
|
|
|
|
public bool DefaultEnabled { get; set; }
|
2020-06-19 19:10:10 +00:00
|
|
|
}
|