using System.Text.Json.Serialization; namespace Jellyfin.Plugin.JRay.Models; /// /// An actor present in the scene at a queried timestamp. /// /// /// "Present in the scene", not "visible on screen". The truth file makes a claim /// about scene membership, so an actor who has turned away or is off-camera /// during a reverse shot is still present. The type was named /// ActorAtTime, which invited exactly the instantaneous reading SR-002 /// forbids. /// // TRACES: JR-005 | SR-002 public class ActorInScene { /// /// Gets or sets the actor's display name. /// [JsonPropertyName("name")] public string Name { get; set; } = string.Empty; /// /// Gets or sets the actor's IMDB person id, or "" if unresolved. /// [JsonPropertyName("imdb_id")] public string ImdbId { get; set; } = string.Empty; /// /// Gets or sets the actor's TMDB person id, or "" if unresolved. /// [JsonPropertyName("tmdb_id")] public string TmdbId { get; set; } = string.Empty; /// /// Gets or sets the actor's Jellyfin Person item GUID, or "" if unresolved. /// [JsonPropertyName("jellyfin_id")] public string JellyfinId { get; set; } = string.Empty; }