mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 06:23:56 +01:00
14 lines
307 B
C#
14 lines
307 B
C#
|
|
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; }
|
|
}
|
|
}
|