using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayStockPortfolioSingleAddResponse.
///
public class AlipayStockPortfolioSingleAddResponse : AopResponse
{
///
/// 操作返回码,调用成功返回200
///
[XmlElement("code")]
public string Code { get; set; }
///
/// 返回码的描述
///
[XmlElement("msg")]
public string Msg { get; set; }
///
/// 本次操作是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
}
}