using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobilePublicLabelUserAddResponse.
///
public class AlipayMobilePublicLabelUserAddResponse : AopResponse
{
///
/// 结果码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 结果信息
///
[JsonProperty("msg")]
public string Msg { get; set; }
}
}