using System.Collections.Generic; namespace API.Entities.Metadata; /// /// External Metadata from Kavita+ for a Chapter /// /// /// As apposed to , /// we do not have a ValidUntilUtc, as this is only matched together with the series. /// public class ExternalChapterMetadata { public int Id { get; set; } public int ChapterId { get; set; } public ICollection ExternalReviews { get; set; } = null!; }