jellyfin/MediaBrowser.Model/Dto/RecommendationDto.cs

15 lines
307 B
C#
Raw Normal View History


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; }
}
}