using System.Collections.Generic;
public static void Main()
Console.WriteLine(JsonConvert.SerializeObject(fac));
Console.WriteLine("Hello World");
this.SupplementalInterestObjects = new List<SupplementalInterestObject>();
public int facId {get;set;}
public List<SupplementalInterestObject> SupplementalInterestObjects {get;set;}
[JsonProperty("SupplementalInterestObjects")]
public List<Object> fakeSuppInterestObjects {
if (this.SupplementalInterestObjects != null && this.SupplementalInterestObjects.Count > 0)
return new List<Object>(this.SupplementalInterestObjects);
return new List<Object>{new object {}};
public class SupplementalInterestObject {
public string blah {get;set;}
public string otherthing {get;set;}