mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-28 07:40:22 -05:00
15 lines
455 B
C#
15 lines
455 B
C#
using System.Collections.Generic;
|
|
using API.DTOs.Scrobbling;
|
|
using API.DTOs.SeriesDetail;
|
|
|
|
namespace API.DTOs.KavitaPlus.ExternalMetadata;
|
|
|
|
internal class SeriesDetailPlusApiDto
|
|
{
|
|
public IEnumerable<MediaRecommendationDto> Recommendations { get; set; }
|
|
public IEnumerable<UserReviewDto> Reviews { get; set; }
|
|
public IEnumerable<RatingDto> Ratings { get; set; }
|
|
public int? AniListId { get; set; }
|
|
public long? MalId { get; set; }
|
|
}
|