Kavita/API/DTOs/Scrobbling/ScrobbleHoldDto.cs
2025-05-04 07:14:44 -07:00

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; }
}