You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/src/NzbDrone.Core/ImportLists/TMDb/User/TMDbUserListType.cs

17 lines
396 B

using System.Runtime.Serialization;
namespace NzbDrone.Core.ImportLists.TMDb.User
{
public enum TMDbUserListType
{
[EnumMember(Value = "Watchlist")]
Watchlist = 1,
[EnumMember(Value = "Recommendations")]
Recommendations = 2,
[EnumMember(Value = "Rated")]
Rated = 3,
[EnumMember(Value = "Favorite")]
Favorite = 4
}
}