using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayMobilePublicLabelDeleteResponse.
///
public class AlipayMobilePublicLabelDeleteResponse : AopResponse
{
///
/// 结果码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 标签编号
///
[JsonProperty("id")]
public long Id { get; set; }
///
/// 结果信息
///
[JsonProperty("msg")]
public string Msg { get; set; }
}
}