Files
csharp/src/KubernetesClient/KubeConfigModels/ExecCredentialResponse.cs

13 lines
352 B
C#
Raw Normal View History

namespace k8s.KubeConfigModels
{
public class ExecCredentialResponse
{
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
[JsonPropertyName("kind")]
public string Kind { get; set; }
[JsonPropertyName("status")]
public IDictionary<string, string> Status { get; set; }
}
}