aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/RecommendationDto.cs
blob: 107f415406f4610e5610be7070aee6a34886eca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#nullable disable
#pragma warning disable CS1591

using System;
using System.Collections.Generic;

namespace MediaBrowser.Model.Dto
{
    public class RecommendationDto
    {
        public IReadOnlyCollection<BaseItemDto> Items { get; set; }

        public RecommendationType RecommendationType { get; set; }

        public string BaselineItemName { get; set; }

        public Guid CategoryId { get; set; }
    }
}