mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
13 lines
298 B
C#
13 lines
298 B
C#
using System;
|
|
|
|
namespace API.DTOs.Scrobbling;
|
|
|
|
public sealed record ScrobbleHoldDto
|
|
{
|
|
public string SeriesName { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int LibraryId { get; set; }
|
|
public DateTime Created { get; set; }
|
|
public DateTime CreatedUtc { get; set; }
|
|
}
|