namespace API.DTOs.Metadata.Matching;
///
/// Used for matching a series with Kavita+ for metadata and scrobbling
///
public sealed record MatchSeriesDto
{
///
/// When set, Kavita will stop attempting to match this series and will not perform any scrobbling
///
public bool DontMatch { get; set; }
///
/// Series Id to pull internal metadata from to improve matching
///
public int SeriesId { get; set; }
///
/// Free form text to query for. Can be a url and ids will be parsed from it
///
public string Query { get; set; }
}