first push

This commit is contained in:
2025-05-06 10:37:33 -04:00
parent 2b1ec3ee26
commit 74efad656a
35 changed files with 1686 additions and 0 deletions
@@ -0,0 +1,25 @@
using System.Text.Json.Serialization;
namespace MovieActorLookup.Models.TvShow.TvShow
{
public class ActorTvFilmography
{
[JsonPropertyName("cast")]
public List<TvRole> Cast { get; set; }
}
public class TvRole
{
[JsonPropertyName("id")]
public int Id { get; set; }
[JsonPropertyName("name")]
public string ShowTitle { get; set; }
[JsonPropertyName("character")]
public string Character { get; set; }
[JsonPropertyName("poster_path")]
public string PosterPath { get; set; }
}
}