RecommendationDto.cs 316 B

123456789101112131415
  1. using System;
  2. namespace MediaBrowser.Model.Dto
  3. {
  4. public class RecommendationDto
  5. {
  6. public BaseItemDto[] Items { get; set; }
  7. public RecommendationType RecommendationType { get; set; }
  8. public string BaselineItemName { get; set; }
  9. public Guid CategoryId { get; set; }
  10. }
  11. }