Project restructuring.

This commit is contained in:
2025-05-26 22:03:08 -04:00
parent ea8b4a36ff
commit 6accb373cd
26 changed files with 421 additions and 156 deletions

View File

@@ -2,8 +2,15 @@
public class ChapterAttributes
{
public string? Volume { get; set; }
public string? Chapter { get; set; }
public string? Title { get; set; }
public int Pages { get; set; }
public string? TranslatedLanguage { get; set; }
public string? ExternalUrl { get; set; }
public DateTime PublishAt { get; set; }
public DateTime ReadableAt { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
public int Pages { get; set; }
public int Version { get; set; }
}