Moved api models

This commit is contained in:
Marcel Baumgartner
2023-05-05 04:43:38 +02:00
parent 0fc2a06db5
commit 30ff2a6350
6 changed files with 4 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Moonlight.App.Models.Google.Requests; namespace Moonlight.App.ApiClients.Google.Requests;
public class GoogleOAuth2CodePayload public class GoogleOAuth2CodePayload
{ {

View File

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

View File

@@ -2,7 +2,6 @@
using Logging.Net; using Logging.Net;
using Moonlight.App.Database.Entities; using Moonlight.App.Database.Entities;
using Moonlight.App.Exceptions; using Moonlight.App.Exceptions;
using Moonlight.App.Models.Google.Requests;
using Moonlight.App.Models.Misc; using Moonlight.App.Models.Misc;
using RestSharp; using RestSharp;

View File

@@ -1,8 +1,8 @@
using System.Text; using System.Text;
using Logging.Net; using Logging.Net;
using Moonlight.App.ApiClients.Google.Requests;
using Moonlight.App.Database.Entities; using Moonlight.App.Database.Entities;
using Moonlight.App.Exceptions; using Moonlight.App.Exceptions;
using Moonlight.App.Models.Google.Requests;
using RestSharp; using RestSharp;
namespace Moonlight.App.Services.OAuth2; namespace Moonlight.App.Services.OAuth2;

View File

@@ -1,5 +1,5 @@
using System.Net; using System.Net;
using Moonlight.App.Models.IpLocate.Resources; using Moonlight.App.ApiClients.IpLocate.Resources;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace Moonlight.App.Services.Sessions; namespace Moonlight.App.Services.Sessions;

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\Google\Resources" />
</ItemGroup> </ItemGroup>
</Project> </Project>