Duncan Tourolle ac6a3842dd
Some checks failed
🏗️ Build Plugin / call (push) Failing after 0s
📝 Create/Update Release Draft & Release Bump PR / call (push) Failing after 0s
🧪 Test Plugin / call (push) Failing after 0s
🔬 Run CodeQL / call (push) Failing after 0s
first commit
2025-11-12 22:05:36 +01:00

30 lines
813 B
C#

using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.SRFPlay.Api.Models;
/// <summary>
/// Represents the root media composition response from SRF API.
/// </summary>
public class MediaComposition
{
/// <summary>
/// Gets or sets the list of chapters (videos/episodes).
/// </summary>
[JsonPropertyName("chapterList")]
public IReadOnlyList<Chapter> ChapterList { get; set; } = new List<Chapter>();
/// <summary>
/// Gets or sets the episode information.
/// </summary>
[JsonPropertyName("episode")]
public Episode? Episode { get; set; }
/// <summary>
/// Gets or sets the show information.
/// </summary>
[JsonPropertyName("show")]
public Show? Show { get; set; }
}