fix: Addressing PR comments

This commit is contained in:
Tyler Kenney 2025-06-06 08:48:46 -04:00
parent 6498aa7fe5
commit 6e313dfffe
5 changed files with 15 additions and 6 deletions

View file

@ -4,6 +4,12 @@ namespace API.DTOs.Koreader;
public class KoreaderProgressUpdateDto
{
/// <summary>
/// This is the Koreader hash of the book. It is used to identify the book.
/// </summary>
public string Document { get; set; }
/// <summary>
/// UTC Timestamp to return to KOReader
/// </summary>
public DateTime Timestamp { get; set; }
}