12 lines
385 B
C#
12 lines
385 B
C#
namespace MangaReader.Core.WebSearch.NatoManga;
|
|
|
|
public record NatoMangaSearchResult
|
|
{
|
|
public int Id { get; init; }
|
|
public string? Author { get; init; }
|
|
public required string Name { get; init; }
|
|
public string? ChapterLatest { get; init; }
|
|
public required string Url { get; init; }
|
|
public string? Thumb { get; init; }
|
|
public string? Slug { get; init; }
|
|
} |