using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InsMktFactorDTO Data Structure. /// [Serializable] public class InsMktFactorDTO : AopObject { /// /// 规则因子 /// [XmlElement("key")] public string Key { get; set; } /// /// 规则因子值 /// [XmlElement("value")] public string Value { get; set; } } }