25 lines
509 B
C#
25 lines
509 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// CreditPayRefuseVO Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class CreditPayRefuseVO : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 拒绝码
|
|
/// </summary>
|
|
[XmlElement("code")]
|
|
public string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 拒绝详情
|
|
/// </summary>
|
|
[XmlElement("msg")]
|
|
public string Msg { get; set; }
|
|
}
|
|
}
|