using System.Collections.Generic; namespace API.DTOs.Recommendation; public class RecommendationDto { public IList OwnedSeries { get; set; } = new List(); public IList ExternalSeries { get; set; } = new List(); }