using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// FixExtData Data Structure.
///
[Serializable]
public class FixExtData : AopObject
{
///
/// 生态协同平台中,扩展信息的key
///
[XmlElement("key")]
public string Key { get; set; }
///
/// 生态协同平台中,扩展信息的值
///
[XmlElement("value")]
public string Value { get; set; }
}
}