24 lines
477 B
C#
24 lines
477 B
C#
// <copyright file="RecommendationType.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
namespace MediaBrowser.Model.Dto
|
|
{
|
|
public enum RecommendationType
|
|
{
|
|
SimilarToRecentlyPlayed = 0,
|
|
|
|
SimilarToLikedItem = 1,
|
|
|
|
HasDirectorFromRecentlyPlayed = 2,
|
|
|
|
HasActorFromRecentlyPlayed = 3,
|
|
|
|
HasLikedDirector = 4,
|
|
|
|
HasLikedActor = 5
|
|
}
|
|
}
|