9 lines
294 B
C#
9 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>();
|
|
}
|