Is there a way to display all enums as their string value in swagger instead of their int value?
I want to be able to submit POST actions and put enums according to
.Net Core 3.0
using Newtonsoft.Json.Converters; services .AddMvc(options => { options.EnableEndpointRouting = false; }) .AddNewtonsoftJson(options => options.SerializerSettings.Converters.Add(new StringEnumConverter()))