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>
19 lines
449 B
C#
19 lines
449 B
C#
using System;
|
|
|
|
namespace Kavita.Models.DTOs.Scrobbling;
|
|
|
|
public sealed record ScrobbleErrorDto
|
|
{
|
|
/// <summary>
|
|
/// Developer defined string
|
|
/// </summary>
|
|
public string Comment { get; set; }
|
|
/// <summary>
|
|
/// List of providers that could not
|
|
/// </summary>
|
|
public string Details { get; set; }
|
|
public int SeriesId { get; set; }
|
|
public int LibraryId { get; set; }
|
|
public DateTime Created { get; set; }
|
|
}
|