using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// BizParamKeyValue Data Structure.
///
[Serializable]
public class BizParamKeyValue : AopObject
{
///
/// 参数名key
///
[XmlElement("key")]
public string Key { get; set; }
///
/// 参数值value
///
[XmlElement("value")]
public string Value { get; set; }
}
}