23 lines
473 B
C#
23 lines
473 B
C#
using System;
|
|
using TMDbLib.Utilities;
|
|
|
|
namespace TMDbLib.Objects.TvShows
|
|
{
|
|
[Flags]
|
|
public enum TvEpisodeMethods
|
|
{
|
|
[EnumValue("Undefined")]
|
|
Undefined = 0,
|
|
[EnumValue("credits")]
|
|
Credits = 1,
|
|
[EnumValue("images")]
|
|
Images = 2,
|
|
[EnumValue("external_ids")]
|
|
ExternalIds = 4,
|
|
[EnumValue("videos")]
|
|
Videos = 8,
|
|
[EnumValue("account_states")]
|
|
AccountStates = 16,
|
|
}
|
|
}
|