Just add JsonPropertyOrder attribute to the property of your model which want to order list to it. but it's order number should be -1 to set the first order.
example:
utepublic class Vehicle
{
[JsonPropertyOrder(-1)]
public int Id { get; set; }
public string? Manufacturer { get; set; }
}