mirror of
https://github.com/Readarr/Readarr
synced 2026-04-23 13:20:56 +02:00
23 lines
No EOL
498 B
C#
23 lines
No EOL
498 B
C#
namespace TVDBSharp.Models.Enums
|
|
{
|
|
/// <summary>
|
|
/// Describes the current status of a show.
|
|
/// </summary>
|
|
public enum Status
|
|
{
|
|
/// <summary>
|
|
/// No more episodes are being released.
|
|
/// </summary>
|
|
Ended,
|
|
|
|
/// <summary>
|
|
/// The show is ongoing.
|
|
/// </summary>
|
|
Continuing,
|
|
|
|
/// <summary>
|
|
/// Default value if no status is specified.
|
|
/// </summary>
|
|
Unknown
|
|
}
|
|
} |