Serializing Enums to String in MVC6
Often you will want to change the default serialization of your API responses, to ensure that enums are reflected as strings, not integers. Why? Well, which is more self documenting? { "Status": 1, "Message": "things are on fire" } or { "Status": " Read More