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.
Sonarr/src/NzbDrone.Core/ImportLists/MyAnimeList/MyAnimeListStatus.cs

26 lines
509 B

using NzbDrone.Core.Annotations;
namespace NzbDrone.Core.ImportLists.MyAnimeList
{
public enum MyAnimeListStatus
{
[FieldOption(label: "All")]
All = 0,
[FieldOption(label: "Watching")]
Watching = 1,
[FieldOption(label: "Completed")]
Completed = 2,
[FieldOption(label: "On Hold")]
OnHold = 3,
[FieldOption(label: "Dropped")]
Dropped = 4,
[FieldOption(label: "Plan to Watch")]
PlanToWatch = 5
}
}