From c5b3ebce807f75ddd97a17f5a3b699f46b1b97e9 Mon Sep 17 00:00:00 2001 From: Don Oerkfitz Date: Fri, 12 Mar 2021 23:15:01 -0600 Subject: [PATCH] started tmdb wrapper system --- Common.Library/Common.Library.csproj | 1 + Common.Library/TMDB/TMDBWrapper.cs | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 Common.Library/TMDB/TMDBWrapper.cs 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