started tmdb wrapper system
parent
a237b9aeea
commit
c5b3ebce80
@ -0,0 +1,15 @@
|
||||
using TMDbLib.Client;
|
||||
|
||||
namespace Common.Library.TMDB
|
||||
{
|
||||
public class TMDBWrapper
|
||||
{
|
||||
private readonly string ApiKey;
|
||||
public TMDBWrapper(string apiKey)
|
||||
{
|
||||
ApiKey = apiKey;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue