Files
stream-cinema/CinemaLib/API/Cast.cs
Roman Vaníček 0bcb6d571f
All checks were successful
continuous-integration/drone/push Build is passing
Rename to Cinema
2024-11-30 00:50:10 +01:00

12 lines
349 B
C#

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; }
}