21 lines
504 B
C#
21 lines
504 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// OldListListComplexMockModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class OldListListComplexMockModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 复杂模型list
|
|
/// </summary>
|
|
[XmlArray("cm_list")]
|
|
[XmlArrayItem("old_complext_mock_model")]
|
|
public List<OldComplextMockModel> CmList { get; set; }
|
|
}
|
|
}
|