mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
16 lines
371 B
C#
16 lines
371 B
C#
using System;
|
|
|
|
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; }
|
|
}
|