Kavita/API/DTOs/Recommendation/RecommendationDto.cs
2025-05-04 07:14:44 -07:00

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>();
}