mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-21 06:20:33 -04:00
22 lines
656 B
C#
22 lines
656 B
C#
namespace API.DTOs.Scrobbling;
|
|
|
|
public record PlusSeriesDto
|
|
{
|
|
public int? AniListId { get; set; }
|
|
public long? MalId { get; set; }
|
|
public string? GoogleBooksId { get; set; }
|
|
public string? MangaDexId { get; set; }
|
|
public string SeriesName { get; set; }
|
|
public string? AltSeriesName { get; set; }
|
|
public MediaFormat MediaFormat { get; set; }
|
|
/// <summary>
|
|
/// Optional but can help with matching
|
|
/// </summary>
|
|
public int? ChapterCount { get; set; }
|
|
/// <summary>
|
|
/// Optional but can help with matching
|
|
/// </summary>
|
|
public int? VolumeCount { get; set; }
|
|
public int? Year { get; set; }
|
|
}
|