using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InfoSource Data Structure. /// [Serializable] public class InfoSource : AopObject { /// /// 儿童信息来源的类型,目前支持name /// [XmlElement("type")] public string Type { get; set; } /// /// 信息来源的取值,比如type为name时,value对应儿童的姓名 /// [XmlElement("value")] public string Value { get; set; } } }