aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/RecommendationDto.cs
blob: 79d3d6c6f4ce50ffb9af0e1a3853a579a288675e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace MediaBrowser.Model.Dto
{
    public class RecommendationDto
    {
        public BaseItemDto[] Items { get; set; }

        public RecommendationType RecommendationType { get; set; }

        public string BaselineItemName { get; set; }

        public Guid CategoryId { get; set; }
    }
}