using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// KbadvertRoleInfoResponse Data Structure.
///
[Serializable]
public class KbadvertRoleInfoResponse : AopObject
{
///
/// 角色code
///
[JsonProperty("role_code")]
public string RoleCode { get; set; }
///
/// NOT_OPEN:未开通 OPENED:已经开通
///
[JsonProperty("status")]
public string Status { get; set; }
}
}