using System.Collections.Generic;
public string username { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public string email { get; set; }
public string status { get; set; }
public List<Users> data { get; set; }
public static void Main()
dynamic usercollectionWrapper = new
username= "alan", firstName= "Alan", lastName= "Johnson", email= "alan@test.com"
username= "allison", firstName= "Allison", lastName= "House", email= "al@test.com"
username= "ryan", firstName= "Ryan", lastName= "Carson", email= "ryan@test.com"
var output = JsonConvert.SerializeObject(usercollectionWrapper);