Moved paper api client

This commit is contained in:
Marcel Baumgartner
2023-05-05 04:42:07 +02:00
parent 3a47a67ec4
commit 0fc2a06db5
6 changed files with 7 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
using Newtonsoft.Json; using Newtonsoft.Json;
using RestSharp; using RestSharp;
namespace Moonlight.App.Helpers; namespace Moonlight.App.ApiClients.Paper;
public class PaperApiHelper public class PaperApiHelper
{ {

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Moonlight.App.Models.Paper.Resources; namespace Moonlight.App.ApiClients.Paper.Resources;
public class PaperBuilds public class PaperBuilds
{ {

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Moonlight.App.Models.Paper.Resources; namespace Moonlight.App.ApiClients.Paper.Resources;
public class PaperVersions public class PaperVersions
{ {

View File

@@ -1,5 +1,6 @@
using Moonlight.App.Helpers; using Moonlight.App.ApiClients.Paper;
using Moonlight.App.Models.Paper.Resources; using Moonlight.App.ApiClients.Paper.Resources;
using Moonlight.App.Helpers;
namespace Moonlight.App.Services; namespace Moonlight.App.Services;

View File

@@ -73,7 +73,6 @@
<Folder Include="App\ApiClients\CloudPanel\Resources\" /> <Folder Include="App\ApiClients\CloudPanel\Resources\" />
<Folder Include="App\ApiClients\Daemon\Requests\" /> <Folder Include="App\ApiClients\Daemon\Requests\" />
<Folder Include="App\Http\Middleware" /> <Folder Include="App\Http\Middleware" />
<Folder Include="App\Models\Daemon\" />
<Folder Include="App\Models\Google\Resources" /> <Folder Include="App\Models\Google\Resources" />
</ItemGroup> </ItemGroup>

View File

@@ -4,6 +4,7 @@ using CurrieTechnologies.Razor.SweetAlert2;
using Logging.Net; using Logging.Net;
using Moonlight.App.ApiClients.CloudPanel; using Moonlight.App.ApiClients.CloudPanel;
using Moonlight.App.ApiClients.Daemon; using Moonlight.App.ApiClients.Daemon;
using Moonlight.App.ApiClients.Paper;
using Moonlight.App.ApiClients.Wings; using Moonlight.App.ApiClients.Wings;
using Moonlight.App.Database; using Moonlight.App.Database;
using Moonlight.App.Events; using Moonlight.App.Events;