using System;
using Newtonsoft.Json;
public class Program
{
public static void Main()
var test = new Test();
Console.WriteLine(JsonConvert.SerializeObject(test));
}
public class Test
[JsonProperty("type")]
public string Type { get; set; } = "blah";