namespace k8s.KubeConfigModels
{
using YamlDotNet.Serialization;
///
/// Relates nicknames to context information.
///
public class Context
{
///
/// Gets or sets the context information.
///
[YamlMember(Alias = "context")]
public ContextDetails ContextDetails { get; set; }
///
/// Gets or sets the nickname for this context.
///
[YamlMember(Alias = "name")]
public string Name { get; set; }
[YamlMember(Alias = "namespace")]
public string Namespace { get; set; }
}
}