GenerateToolingFeed/V3Format/V3FormatCliEntry.cs (17 lines of code) (raw):

using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace GenerateToolingFeed { public class V3FormatCliEntry { [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public string OperatingSystem { get; set; } [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] public string OS { get; set; } public string Architecture { get; set; } public string downloadLink { get; set; } public string sha2 { get; set; } } }