using Newtonsoft.Json; using System.Collections.Generic; namespace k8s.Models { public class NodeMetricsList { /// /// Defines the versioned schema of this representation of an object. /// [JsonProperty(PropertyName = "apiVersion")] public string ApiVersion { get; set; } /// /// Defines the REST resource this object represents. /// [JsonProperty(PropertyName = "kind")] public string Kind { get; set; } /// /// The kubernetes standard object's metadata. /// [JsonProperty(PropertyName = "metadata")] public V1ObjectMeta Metadata { get; set; } /// /// The list of node metrics. /// [JsonProperty(PropertyName = "items")] public IEnumerable Items { get; set; } } }