ListListComplexMockModel.cs 491 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Aop.Api.Domain
  5. {
  6. /// <summary>
  7. /// ListListComplexMockModel Data Structure.
  8. /// </summary>
  9. [Serializable]
  10. public class ListListComplexMockModel : AopObject
  11. {
  12. /// <summary>
  13. /// 复杂对象list
  14. /// </summary>
  15. [XmlArray("cm_list")]
  16. [XmlArrayItem("complext_mock_model")]
  17. public List<ComplextMockModel> CmList { get; set; }
  18. }
  19. }