using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// Command Data Structure.
///
[Serializable]
public class Command : AopObject
{
///
/// 下发者
///
[XmlElement("commander")]
public string Commander { get; set; }
///
/// 键:值
///
[XmlElement("content")]
public string Content { get; set; }
///
/// 执行者
///
[XmlElement("executor")]
public string Executor { get; set; }
///
/// bean.method
///
[XmlElement("key")]
public string Key { get; set; }
}
}