Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayCommerceEducateStudentinfoShareResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

17 lines
439 B
C#

using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayCommerceEducateStudentinfoShareResponse.
/// </summary>
public class AlipayCommerceEducateStudentinfoShareResponse : AopResponse
{
/// <summary>
/// 学生信息
/// </summary>
[JsonProperty("student_info_share_result")]
public EduStudentInfoShareResult StudentInfoShareResult { get; set; }
}
}