If a class has a dynamic type propery,The Swagger UI Example Value is {} ,For example
Class B{ public string BP1 {get;set;} public string BP2 {get;set;}}Class A{ public dynamic Data {get;set;} public string Content {get;set;}}
the example would be {{"data": {},"content":""},but how to accomplish this value{{"data": {"BP1":"","BP2":""},"content":""}
If a class has a dynamic type propery,The Swagger UI Example Value is {} ,For example
Class B{ public string BP1 {get;set;} public string BP2 {get;set;}}
Class A{ public dynamic Data {get;set;} public string Content {get;set;}}
the example would be{{"data": {},"content":""}
,but how to accomplish this value{{"data": {"BP1":"","BP2":""},"content":""}