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;
namespace Moonlight.App.Models.Google.Requests;
namespace Moonlight.App.ApiClients.Google.Requests;
public class GoogleOAuth2CodePayload
{

View file

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

View file

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

View file

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

View file

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

View file

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