using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ListListComplexMockModel Data Structure.
///
[Serializable]
public class ListListComplexMockModel : AopObject
{
///
/// 复杂对象list
///
[XmlArray("cm_list")]
[XmlArrayItem("complext_mock_model")]
public List CmList { get; set; }
}
}