jellyfin/Jellyfin.Api/Models/LibraryDtos/LibraryOptionInfoDto.cs
Bond_009 97a02f5803 Remove BOM from UTF-8 files
I think some people need to change their IDE configuration ;)
2024-08-30 15:29:48 +02:00

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; }
}