mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
19 lines
546 B
C#
19 lines
546 B
C#
using System;
|
|
|
|
namespace API.DTOs.Statistics;
|
|
|
|
/// <summary>
|
|
/// Represents a single User's reading event
|
|
/// </summary>
|
|
public class ReadHistoryEvent
|
|
{
|
|
public int UserId { get; set; }
|
|
public required string? UserName { get; set; } = default!;
|
|
public int LibraryId { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public required string SeriesName { get; set; } = default!;
|
|
public DateTime ReadDate { get; set; }
|
|
public int ChapterId { get; set; }
|
|
public required float ChapterNumber { get; set; } = default!;
|
|
}
|