From aec0db12570b3c62659f72587c9f3e26564b4300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20LAVERGNE?= Date: Sun, 16 Jun 2024 19:06:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Class=20to=20store=20AP?= =?UTF-8?q?I=20application=20properties.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/GameAtlas/Models/API/IGDBSettings.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Sources/GameAtlas/Models/API/IGDBSettings.cs diff --git a/Sources/GameAtlas/Models/API/IGDBSettings.cs b/Sources/GameAtlas/Models/API/IGDBSettings.cs new file mode 100644 index 0000000..7f7fa24 --- /dev/null +++ b/Sources/GameAtlas/Models/API/IGDBSettings.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Models.API +{ + public class IGDBSettings + { + public string ClientId { get; set; } + public string ClientSecret { get; set; } + } +}