是否有可能让RestSharp将此Xml片段反序列化为单个类而不是两个类?
<shippingInfo>
<shippingServiceCost currencyId="AUD">58.02</shippingServiceCost>
<shippingType>Flat</shippingType>
<shipToLocations>Worldwide</shipToLocations>
</shippingInfo>
注意第一个元素shippingServiceCost
?它有一个属性。通常,我只会创建一个名为ShippingServiceCost
的子类,并在其中添加两个属性:CurrentId
和Value
。
但是可以在主要类ShippingInfo
中的属性中使用CurrencyId值吗?
答案 0 :(得分:0)
我这样做的方式可能是: