19 lines
399 B
C#
19 lines
399 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ZhimaOpenQerqQerqQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ZhimaOpenQerqQerqQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 123
|
|
/// </summary>
|
|
[XmlElement("address")]
|
|
public AgreementParams Address { get; set; }
|
|
}
|
|
}
|