mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
16 lines
381 B
C#
16 lines
381 B
C#
using System;
|
|
|
|
namespace Kavita.Models.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; }
|
|
}
|