using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// InsMktFactorDTO Data Structure. /// [Serializable] public class InsMktFactorDTO : AopObject { /// /// 规则因子 /// [JsonProperty("key")] public string Key { get; set; } /// /// 规则因子值 /// [JsonProperty("value")] public string Value { get; set; } } }