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>
23 lines
686 B
C#
23 lines
686 B
C#
using System;
|
|
|
|
namespace Kavita.Models.DTOs.Scrobbling;
|
|
#nullable enable
|
|
|
|
public sealed record ScrobbleEventDto
|
|
{
|
|
public long Id { get; init; }
|
|
public string SeriesName { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int LibraryId { get; set; }
|
|
public bool IsProcessed { get; set; }
|
|
public float? VolumeNumber { get; set; }
|
|
public int? ChapterNumber { get; set; }
|
|
public DateTime LastModifiedUtc { get; set; }
|
|
public DateTime CreatedUtc { get; set; }
|
|
public float? Rating { get; set; }
|
|
public ScrobbleEventType ScrobbleEventType { get; set; }
|
|
public bool IsErrored { get; set; }
|
|
public string? ErrorDetails { get; set; }
|
|
|
|
}
|