public static void Main()
var settings = new JsonSerializerSettings();
settings.NullValueHandling = NullValueHandling.Ignore;
Console.WriteLine(JsonConvert.SerializeObject(user, settings));
public int Id { get; set; }
public int ManagerId { get; set; }
public bool IsActive { get; set; }
public bool? IsAdmin { get; set; }
public int? UserID { get; set; }
public string ssn { get; set; }
public string empID { get; set; }
public string schemaAgencyName { get; set; }
public string givenName { get; set; }
public string familyName { get; set; }
public string password { get; set; }