Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayCommerceEducateStudentinfoShareResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +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; }
}
}