using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// IcrowdUseParam Data Structure. /// [Serializable] public class IcrowdUseParam : AopObject { /// /// 接口上下文 /// [XmlElement("context")] public IcrowdUseContext Context { get; set; } /// /// 额外信息 /// [XmlArray("external_info")] [XmlArrayItem("string")] public List ExternalInfo { get; set; } /// /// 要调用的方法ID /// [XmlElement("method_id")] public string MethodId { get; set; } } }