19 lines
428 B
C#
19 lines
428 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using Aop.Api.Domain;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayZmscoreZrankGetResponse.
|
|
/// </summary>
|
|
public class AlipayZmscoreZrankGetResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 芝麻分分段
|
|
/// </summary>
|
|
[XmlElement("zm_score_zrank")]
|
|
public AlipayZmScoreZrankResult ZmScoreZrank { get; set; }
|
|
}
|
|
}
|