aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/RecommendationDto.cs
blob: 275f97c2818ab20cd9650f3a607ab8b89cbef507 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MediaBrowser.Model.Dto
{
    public class RecommendationDto
    {
        public BaseItemDto[] Items { get; set; }

        public RecommendationType RecommendationType { get; set; }

        public string BaselineItemName { get; set; }

        public string CategoryId { get; set; }
    }
}