mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-05-05 07:43:01 +08:00
12 lines
277 B
C#
12 lines
277 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MetaTube.Metadata;
|
|
|
|
public class ActorSearchResult : ProviderInfo
|
|
{
|
|
[JsonPropertyName("images")]
|
|
public string[] Images { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; }
|
|
} |