mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-24 03:12:50 +08:00

* copied everything from repos back to ocelot repo * added src projects to sln * removed all test projects that have no tests * added all test projects to sln * removed test not on master * merged unit tests * merged acceptance tests * merged integration tests * fixed namepaces * build script creates packages for all projects * updated docs to make sure no references to external repos that we will remove * +semver: breaking
17 lines
362 B
C#
17 lines
362 B
C#
namespace Ocelot.Provider.Rafty
|
|
{
|
|
using Newtonsoft.Json;
|
|
|
|
internal 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; }
|
|
}
|
|
}
|