有没有办法更改 NSwagStudio 中的设置,以便当 JSON 序列化设置输出为Newtonsoft.Json.Required.AllowNull
而不是Newtonsoft.Json.Required.Always
?
我目前手动更改了属性以允许空值。
[Newtonsoft.Json.JsonProperty("returnCode", Required = Newtonsoft.Json.Required.Always)]
public int ReturnCode { get; set; }
我需要它是:
[Newtonsoft.Json.JsonProperty("returnCode", Required = Newtonsoft.Json.Required.AllowNull)]
public int ReturnCode { get; set; }