次のようなオブジェクト パラメータが与えられた場合:
public class XYZ {
public List<ABC> listABC { get; set; }
}
public class ABC {
public string A { get; set; }
public string B { get; set; }
public string C { get; set; }
}
パラメータの前に [FromUri(Name="XYZ")] を使用すると、Swashbuckle で XYZ.listABC を UI に表示し、テキスト ボックスにリストを入力できることはわかっています。
XYZ.listABC の一般的なテキスト ボックスを使用する代わりに、UI でリスト オブジェクト ABC を公開する方法はありますか?