namespace API.DTOs.Scrobbling;
#nullable enable
///
/// Represents information about a potential Series for Kavita+
///
public sealed record PlusSeriesRequestDto
{
public int? AniListId { get; set; }
public long? MalId { get; set; }
public string? GoogleBooksId { get; set; }
public string? MangaDexId { get; set; }
///
/// ComicBookRoundup Id
///
public int? CbrId { get; set; }
public string SeriesName { get; set; }
public string? AltSeriesName { get; set; }
public PlusMediaFormat MediaFormat { get; set; }
///
/// Optional but can help with matching
///
public int? ChapterCount { get; set; }
///
/// Optional but can help with matching
///
public int? VolumeCount { get; set; }
public int? Year { get; set; }
}