using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// UpdateCodeResponse Data Structure.
///
[Serializable]
public class UpdateCodeResponse : AopObject
{
///
/// 批量更新码值返回结果列表
///
[XmlArray("update_code_result")]
[XmlArrayItem("update_code_result")]
public List UpdateCodeResult { get; set; }
}
}