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

12 lines
300 B
C#

using Newtonsoft.Json;
using System.Collections.Generic;
namespace Philips.EDI.Foundation.APIGateway.AutomationTest.CFUtilites.Models
{
public class CFEnvironmentVariable
{
[JsonProperty("var")]
public Dictionary<string, string> EnvironmentVariables { get; set; }
}
}