9 lines
246 B
C#
9 lines
246 B
C#
namespace MangaReader.Core.Sources.MangaDex.Api;
|
|
|
|
public class ChapterAttributes
|
|
{
|
|
public string? Chapter { get; set; }
|
|
public string? Title { get; set; }
|
|
public int Pages { get; set; }
|
|
public DateTime PublishAt { get; set; }
|
|
} |