mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 04:26:11 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
36 lines
891 B
C#
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; }
|
|
}
|