I have a BaseDTO c# class which just has one property of type boolean called Success
I then have a derived class which has some extra properties.
When this derived class gets outputted in JSON in web api the Success property appears @ the bottom.
I would like it to appear first.
Is there any attribute i can set on the property to allow this?
Thanks