标签: c# asp.net-web-api
当我的WebApi中的端点返回类似
public Class1 { public int Property1{get;set;} public int? Property2{get;set;} }
在自动生成的文档中,Property1和Property2都显示为整数。有没有办法强制文档表明Property2是nullable?
Property1
Property2
nullable