using FictionArchive.Common.Enums; using FictionArchive.Service.NovelService.Models.Enums; namespace FictionArchive.Service.NovelService.Models.SourceAdapters; public class NovelMetadata { public string Name { get; set; } public string Description { get; set; } public string AuthorName { get; set; } public string AuthorUrl { get; set; } public string Url { get; set; } public string ExternalId { get; set; } public Language RawLanguage { get; set; } public NovelStatus RawStatus { get; set; } public List Chapters { get; set; } public List SourceTags { get; set; } public List SystemTags { get; set; } public SourceDescriptor SourceDescriptor { get; set; } }