-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
953 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.300" | ||
"version": "8.0.401" | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using Blobify.Tests.Fixture; | ||
using Microsoft.Extensions.Primitives; | ||
|
||
namespace Blobify.Tests; | ||
|
||
public static class Constants | ||
{ | ||
public static class Request | ||
{ | ||
public static readonly Uri BaseUri = new ("https://blobify.tests/", UriKind.Absolute); | ||
|
||
public static class Authorization | ||
{ | ||
public static readonly KeyValuePair<string, StringValues>? Authorized = new ("Authorization", "Bearer AccessToken"); | ||
public static readonly KeyValuePair<string, StringValues>? UnAuthorized = null; | ||
} | ||
} | ||
|
||
public static class MediaType | ||
{ | ||
public const string Json = "application/json"; | ||
} | ||
|
||
public static class Tenant | ||
{ | ||
public const string Id = "daea2e9b-847b-4c93-850d-2aa6f2d7af33"; | ||
} | ||
} |
Oops, something went wrong.