mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
10 lines
294 B
C#
10 lines
294 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Recommendation;
|
|
|
|
public sealed record RecommendationDto
|
|
{
|
|
public IList<SeriesDto> OwnedSeries { get; set; } = new List<SeriesDto>();
|
|
public IList<ExternalSeriesDto> ExternalSeries { get; set; } = new List<ExternalSeriesDto>();
|
|
}
|