using System;
namespace API.DTOs.Koreader;
public class KoreaderProgressUpdateDto
{
///
/// This is the Koreader hash of the book. It is used to identify the book.
///
public string Document { get; set; }
///
/// UTC Timestamp to return to KOReader
///
public DateTime Timestamp { get; set; }
}