using System.Collections.Generic;
public static void Main()
MyType mt = new MyType { OtherProperty = "foo" };
mt.JsonData.Add("Prop1", "Value1");
mt.JsonData.Add("Prop2", "Value2");
string json = JsonConvert.SerializeObject(mt, Formatting.Indented);
JsonData = new Dictionary<string, object>();
public Dictionary<string, object> JsonData { get; set; }
public string OtherProperty { get; set; }