17 lines
673 B
C#
17 lines
673 B
C#
namespace MangaReader.Core.Metadata;
|
|
|
|
public class SourceManga
|
|
{
|
|
public required string Title { get; set; }
|
|
public string? Description { get; set; }
|
|
public List<string> AlternateTitles { get; set; } = [];
|
|
public List<string> Authors { get; set; } = [];
|
|
public List<string> Artists { get; set; } = [];
|
|
public MangaStatus Status { get; set; } = MangaStatus.Unknown;
|
|
public List<string> Genres { get; set; } = [];
|
|
public DateTime? UpdateDate { get; set; }
|
|
public long? Views { get; set; }
|
|
public float? RatingPercent { get; set; }
|
|
public int? Votes { get; set; }
|
|
public List<SourceMangaChapter> Chapters { get; set; } = [];
|
|
} |