oauth2-proxy/AutomationTest/Utilities/CFUtility/Models/CFTokenResponse.cs

13 lines
242 B
C#

using Newtonsoft.Json;
namespace Philips.EDI.Foundation.APIGateway.AutomationTest.CFUtilites.Models
{
public class CFTokenResponse
{
[JsonProperty("access_token")]
public string AccessToken { get; set; }
}
}