Duncan Tourolle 4679b77d1a
Some checks failed
🏗️ Build Plugin / call (push) Failing after 0s
📝 Create/Update Release Draft & Release Bump PR / call (push) Failing after 0s
🔬 Run CodeQL / call (push) Failing after 0s
🧪 Test Plugin / call (push) Failing after 0s
First POC with podcasts library
2025-12-13 23:57:58 +01:00

31 lines
636 B
C#

using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.Jellypod.Models;
/// <summary>
/// Represents the download status of a podcast episode.
/// </summary>
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum EpisodeStatus
{
/// <summary>
/// Episode is known but not downloaded.
/// </summary>
Available,
/// <summary>
/// Episode is currently being downloaded.
/// </summary>
Downloading,
/// <summary>
/// Episode has been downloaded and is available locally.
/// </summary>
Downloaded,
/// <summary>
/// Download failed.
/// </summary>
Error
}