using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ListListSmMockModel Data Structure.
///
[Serializable]
public class ListListSmMockModel : AopObject
{
///
/// 简单模型列表
///
[XmlArray("list_simple_model_list")]
[XmlArrayItem("simple_mock_model")]
public List ListSimpleModelList { get; set; }
}
}