17 lines
483 B
C#
17 lines
483 B
C#
namespace MangaReader.Core.Data;
|
|
|
|
public class MangaSource
|
|
{
|
|
public int MangaSourceId { get; set; }
|
|
|
|
public int MangaId { get; set; }
|
|
public required Manga Manga { get; set; }
|
|
|
|
public int SourceId { get; set; }
|
|
public required Source Source { get; set; }
|
|
|
|
public required string Url { get; set; }
|
|
|
|
public virtual ICollection<MangaDescription> Descriptions { get; set; } = [];
|
|
public virtual ICollection<SourceChapter> Chapters { get; set; } = [];
|
|
} |