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