mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
25 lines
720 B
C#
25 lines
720 B
C#
using API.DTOs.Scrobbling;
|
|
using API.Entities.Enums;
|
|
using API.Entities.Metadata;
|
|
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;
|
|
}
|