This commit is contained in:
11
CinemaLib/API/Cast.cs
Normal file
11
CinemaLib/API/Cast.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace CinemaLib.API;
|
||||
|
||||
public class Cast
|
||||
{
|
||||
public string name { get; set; } // Person's name ie. "Josef Maršálek",
|
||||
public string role { get; set; } // ie. "Judge",
|
||||
public string thumbnail { get; set; } // thumb URL ie. https://image.tmdb.org/t/p/original//iI5zJZUG2SQvkEtuZDtJD0gYt2p.jpg
|
||||
public int order { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user