16 lines
355 B
C#
16 lines
355 B
C#
using Newtonsoft.Json;
|
||
|
||
namespace Alipay.AopSdk.Core.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoEduKtStudentModifyResponse.
|
||
/// </summary>
|
||
public class AlipayEcoEduKtStudentModifyResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// Y:代表成功;N:代表失败
|
||
/// </summary>
|
||
[JsonProperty("status")]
|
||
public string Status { get; set; }
|
||
}
|
||
} |