mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-05-05 06:53:15 +08:00
39 lines
979 B
C#
39 lines
979 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Jellyfin.Plugin.MetaTube.Metadata;
|
|
|
|
public class ActorInfo : ActorSearchResult
|
|
{
|
|
[JsonPropertyName("aliases")]
|
|
public string[] Aliases { get; set; }
|
|
|
|
[JsonPropertyName("birthday")]
|
|
public DateTime Birthday { get; set; }
|
|
|
|
[JsonPropertyName("blood_type")]
|
|
public string BloodType { get; set; }
|
|
|
|
[JsonPropertyName("cup_size")]
|
|
public string CupSize { get; set; }
|
|
|
|
[JsonPropertyName("debut_date")]
|
|
public DateTime DebutDate { get; set; }
|
|
|
|
[JsonPropertyName("height")]
|
|
public int Height { get; set; }
|
|
|
|
[JsonPropertyName("hobby")]
|
|
public string Hobby { get; set; }
|
|
|
|
[JsonPropertyName("skill")]
|
|
public string Skill { get; set; }
|
|
|
|
[JsonPropertyName("measurements")]
|
|
public string Measurements { get; set; }
|
|
|
|
[JsonPropertyName("nationality")]
|
|
public string Nationality { get; set; }
|
|
|
|
[JsonPropertyName("summary")]
|
|
public string Summary { get; set; }
|
|
} |