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
+16
View File
@@ -0,0 +1,16 @@
namespace MovieActorLookup.Models
{
public class ActorViewModel
{
public string ActorName { get; set; }
public string ActorProfilePath { get; set; }
public List<MovieCharacterInfo> MovieCharacterInfos { get; set; } = new List<MovieCharacterInfo>();
}
public class MovieCharacterInfo
{
public string MovieTitle { get; set; }
public string CharacterName { get; set; }
public string MoviePosterPath { get; set; }
}
}