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

19 lines
439 B
C#

using System;
namespace API.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; }
}