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

36 lines
891 B
C#

using System;
using Kavita.Models.Entities.Interfaces;
namespace Kavita.Models.Entities.Scrobble;
/// <summary>
/// When a series is not found, we report it here
/// </summary>
public class ScrobbleError : IEntityDate
{
public int Id { get; set; }
/// <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 Series Series { get; set; }
public int LibraryId { get; set; }
public int ScrobbleEventId { get; set; }
public ScrobbleEvent ScrobbleEvent { get; set; }
public DateTime Created { get; set; }
public DateTime LastModified { get; set; }
public DateTime CreatedUtc { get; set; }
public DateTime LastModifiedUtc { get; set; }
}