diff --git a/Common.Library/Common.Library.csproj b/Common.Library/Common.Library.csproj index c2c052d..4f065b8 100644 --- a/Common.Library/Common.Library.csproj +++ b/Common.Library/Common.Library.csproj @@ -14,6 +14,7 @@ + diff --git a/Common.Library/TMDB/TMDBWrapper.cs b/Common.Library/TMDB/TMDBWrapper.cs new file mode 100644 index 0000000..8e59c3a --- /dev/null +++ b/Common.Library/TMDB/TMDBWrapper.cs @@ -0,0 +1,15 @@ +using TMDbLib.Client; + +namespace Common.Library.TMDB +{ + public class TMDBWrapper + { + private readonly string ApiKey; + public TMDBWrapper(string apiKey) + { + ApiKey = apiKey; + } + + + } +} \ No newline at end of file