mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-26 05:37:09 -05:00
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
24 lines
691 B
C#
24 lines
691 B
C#
using API.DTOs.Scrobbling;
|
|
using API.Entities.Enums;
|
|
using API.Services.Plus;
|
|
|
|
namespace API.DTOs.KavitaPlus.Metadata;
|
|
|
|
public sealed record ALMediaTitle
|
|
{
|
|
public string? EnglishTitle { get; set; }
|
|
public string RomajiTitle { get; set; }
|
|
public string NativeTitle { get; set; }
|
|
public string PreferredTitle { get; set; }
|
|
}
|
|
|
|
public sealed record SeriesRelationship
|
|
{
|
|
public int AniListId { get; set; }
|
|
public int? MalId { get; set; }
|
|
public ALMediaTitle SeriesName { get; set; }
|
|
public RelationKind Relation { get; set; }
|
|
public ScrobbleProvider Provider { get; set; }
|
|
public PlusMediaFormat PlusMediaFormat { get; set; } = PlusMediaFormat.Manga;
|
|
}
|