-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Endret response til json for initialize og upload (#547)
* Endret response til json for initialize og upload * Rettet opp feil i tester * Endret variabelnavn * Fiks for MalwareScanTest --------- Co-authored-by: Martin Todorov <>
- Loading branch information
Showing
7 changed files
with
112 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
src/Altinn.Broker.API/Models/FileTransferInitializeResponseExt.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace Altinn.Broker.API.Models; | ||
|
||
public class FileTransferInitializeResponseExt | ||
{ | ||
public Guid FileTransferId { get; set; } | ||
} |
6 changes: 6 additions & 0 deletions
6
src/Altinn.Broker.API/Models/FileTransferUploadResponseExt.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
namespace Altinn.Broker.API.Models; | ||
|
||
public class FileTransferUploadResponseExt | ||
{ | ||
public Guid FileTransferId { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.