namespace MangaReader.Core.Data; public class Manga { public int MangaId { get; set; } public required string Slug { get; set; } public required string Title { get; set; } public string? Description { get; set; } public virtual ICollection Covers { get; set; } public virtual ICollection Titles { get; set; } public virtual ICollection Sources { get; set; } public virtual ICollection Genres { get; set; } public virtual ICollection Chapters { get; set; } public Manga() { Covers = new HashSet(); Titles = new HashSet(); Sources = new HashSet(); Genres = new HashSet(); Chapters = new HashSet(); } }