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
451 B
19 lines
451 B
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; }
|
|
}
|
|
}
|