19 lines
395 B
C#
19 lines
395 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// ExtContext Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class ExtContext : AopObject
|
||
{
|
||
/// <summary>
|
||
/// ebank_form,银行返回格式类型
|
||
/// </summary>
|
||
[XmlElement("ebank_form")]
|
||
public string EbankForm { get; set; }
|
||
}
|
||
}
|