using System.Text.Json.Serialization; namespace Jellyfin.Plugin.JRay.Models; /// /// An actor visible on screen at a queried timestamp. /// public class ActorAtTime { /// /// 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; }