using System.Collections.ObjectModel;
using System.Text.Json.Serialization;
namespace Jellyfin.Plugin.JRay.Models;
///
/// Extensible "what's happening at time t" context for a media item.
/// Returned by the jray?t= endpoint; new fields (e.g. locations,
/// trivia) can be added here without changing the route.
///
public class JRayContext
{
///
/// Gets the list of actors visible on screen at the queried timestamp.
///
[JsonPropertyName("actors")]
public Collection Actors { get; } = new();
}