removed idserver4 (#547)

This commit is contained in:
Tom Pallister
2018-08-14 08:19:00 +01:00
committed by GitHub
parent edbe33415d
commit 0786614e50
13 changed files with 150 additions and 1187 deletions

View File

@ -1,16 +0,0 @@
using Newtonsoft.Json;
namespace Ocelot.IntegrationTests
{
class BearerToken
{
[JsonProperty("access_token")]
public string AccessToken { get; set; }
[JsonProperty("expires_in")]
public int ExpiresIn { get; set; }
[JsonProperty("token_type")]
public string TokenType { get; set; }
}
}