refactor: Dokumenterstellungs-Modelle in den Request-Ordner verschoben
- Modelle von `Models/Documents/Create/Request` nach `Models/Documents/Request` verschoben, um eine bessere Organisation und Konsistenz zu gewährleisten.
This commit is contained in:
parent
18b3a7dfff
commit
dc0cfd6010
@ -1,4 +1,4 @@
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Create.Request
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
||||
{
|
||||
public class Attribute
|
||||
{
|
||||
@ -1,4 +1,4 @@
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Create.Request
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
||||
{
|
||||
public class DocCreateBody
|
||||
{
|
||||
@ -1,7 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Create.Request
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
||||
{
|
||||
public class Item
|
||||
{
|
||||
@ -1,4 +1,4 @@
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Create.Request
|
||||
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
||||
{
|
||||
public class ObjectType
|
||||
{
|
||||
@ -5,12 +5,11 @@ using DigitalData.Core.Legacy.Client;
|
||||
using System.Threading.Tasks;
|
||||
using WindreamHub.Legacy.Client.Models;
|
||||
using WindreamHub.Legacy.Client.Models.Documents.Response;
|
||||
using WindreamHub.Legacy.Client.Models.Documents.Create.Request;
|
||||
using WindreamHub.Legacy.Client.Models.Documents.Request;
|
||||
using System.IO;
|
||||
using System.Web;
|
||||
using WindreamHub.Legacy.Client.Models.Documents;
|
||||
using System.Linq;
|
||||
using System;
|
||||
|
||||
namespace WindreamHub.Legacy.Client.Routes
|
||||
{
|
||||
@ -60,5 +59,7 @@ namespace WindreamHub.Legacy.Client.Routes
|
||||
return await FetchAsync(route: $"/Upload?{query}", method: HttpMethod.Post, body: fileContent).ThenAsync(res => res.Simplify<DocResponse, DocResponse>());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@ -91,10 +91,10 @@
|
||||
<Compile Include="Models\Authentication\ICredential.cs" />
|
||||
<Compile Include="Models\Authentication\ValidationResponse.cs" />
|
||||
<Compile Include="Models\Authentication\Base64Credential.cs" />
|
||||
<Compile Include="Models\Documents\Create\Request\Attribute.cs" />
|
||||
<Compile Include="Models\Documents\Create\Request\Item.cs" />
|
||||
<Compile Include="Models\Documents\Create\Request\ObjectType.cs" />
|
||||
<Compile Include="Models\Documents\Create\Request\DocCreateBody.cs" />
|
||||
<Compile Include="Models\Documents\Request\Attribute.cs" />
|
||||
<Compile Include="Models\Documents\Request\Item.cs" />
|
||||
<Compile Include="Models\Documents\Request\ObjectType.cs" />
|
||||
<Compile Include="Models\Documents\Request\DocCreateBody.cs" />
|
||||
<Compile Include="Models\Documents\Response\Attribute.cs" />
|
||||
<Compile Include="Models\Documents\Response\DocResponse.cs" />
|
||||
<Compile Include="Models\Documents\Response\IndexingDetails.cs" />
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user