using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobilePublicLabelUserQueryResponse.
///
public class AlipayMobilePublicLabelUserQueryResponse : AopResponse
{
///
/// 结果码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 标签编号,英文逗号分隔。
///
[JsonProperty("label_ids")]
public string LabelIds { get; set; }
///
/// 结果信息
///
[JsonProperty("msg")]
public string Msg { get; set; }
}
}