Template
chore: deploy initial code base
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Strata.ContinuousImprovement.Api.Test.Integration.Tests
|
||||
{
|
||||
public class StrataTokenInfo
|
||||
{
|
||||
[JsonPropertyName("access_token")]
|
||||
public required string AccessToken { get; set; }
|
||||
[JsonPropertyName("token_type")]
|
||||
public required string TokenType { get; set; }
|
||||
[JsonPropertyName("expires_in")]
|
||||
public required long ExpiresIn { get; set; }
|
||||
[JsonPropertyName("refresh_token")]
|
||||
public required string RefreshToken { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user