97a02f5803
I think some people need to change their IDE configuration ;)
18 lines
390 B
C#
18 lines
390 B
C#
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; }
|
|
}
|