using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// RiskResult Data Structure. /// [Serializable] public class RiskResult : AopObject { /// /// 风险类型,比如0表示广告 /// [XmlElement("risk_type")] public string RiskType { get; set; } /// /// 风险识别分数,0-100,分值越大风险越高 /// [XmlElement("score")] public string Score { get; set; } } }