Kavita/Kavita.Models/DTOs/Scrobbling/ScrobbleErrorDto.cs
Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

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