27 lines
597 B
C#
27 lines
597 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ZhimaMerchantTestPracticeModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ZhimaMerchantTestPracticeModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// a d
|
|
/// </summary>
|
|
[XmlArray("add")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> Add { get; set; }
|
|
|
|
/// <summary>
|
|
/// zzz
|
|
/// </summary>
|
|
[XmlElement("xxxx")]
|
|
public XXXXsdasdasd Xxxx { get; set; }
|
|
}
|
|
}
|