ASP.Net Web API, Why are my JSONs full of weird data and not formatting?
I have a class Company that looks like this. public class Company { [JsonPropertyName("companyID")] public string CompanyID { get; set; } [JsonPropertyName("vehicleIDs")] public List<string> VehicleIDs { get; set; } [JsonPropertyName("email")] public string Email { get; set; } [JsonPropertyName("companyName")] public string…