RecommendationDto.cs 369 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Dto
  4. {
  5. public class RecommendationDto
  6. {
  7. public IReadOnlyCollection<BaseItemDto> Items { get; set; }
  8. public RecommendationType RecommendationType { get; set; }
  9. public string BaselineItemName { get; set; }
  10. public Guid CategoryId { get; set; }
  11. }
  12. }