PR comments

This commit is contained in:
Joseph Milazzo 2025-06-23 18:45:06 -05:00
parent 5a99755e3a
commit dfded9796c
2 changed files with 5 additions and 1 deletions

View file

@ -65,5 +65,9 @@ public sealed record LibraryDto
/// </summary> /// </summary>
/// <remarks>This does not exclude the library from being linked to wrt Series Relationships</remarks> /// <remarks>This does not exclude the library from being linked to wrt Series Relationships</remarks>
/// <remarks>Requires a valid LicenseKey</remarks> /// <remarks>Requires a valid LicenseKey</remarks>
public bool AllowMetadataMatching { get; set; } = true;
/// <summary>
/// Allow Kavita to read metadata (ComicInfo.xml, Epub, PDF)
/// </summary>
public bool EnableMetadata { get; set; } = true; public bool EnableMetadata { get; set; } = true;
} }