mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
22 lines
702 B
C#
22 lines
702 B
C#
using System.Collections.Generic;
|
|
using API.DTOs.Scrobbling;
|
|
|
|
namespace API.DTOs.KavitaPlus.ExternalMetadata;
|
|
#nullable enable
|
|
|
|
/// <summary>
|
|
/// Represents a request to match some series from Kavita to an external id which K+ uses.
|
|
/// </summary>
|
|
public sealed record MatchSeriesRequestDto
|
|
{
|
|
public required string SeriesName { get; set; }
|
|
public ICollection<string> AlternativeNames { get; set; } = [];
|
|
public int Year { get; set; } = 0;
|
|
public string? Query { get; set; }
|
|
public int? AniListId { get; set; }
|
|
public long? MalId { get; set; }
|
|
public string? HardcoverId { get; set; }
|
|
public int? CbrId { get; set; }
|
|
public PlusMediaFormat Format { get; set; }
|
|
}
|