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