using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// EduStudentInfoShareResult Data Structure. /// [Serializable] public class EduStudentInfoShareResult : AopObject { /// /// 教育分类 /// [JsonProperty("biz_type")] public string BizType { get; set; } /// /// 学生详细信息 /// [JsonProperty("student_infos")] public List StudentInfos { get; set; } /// /// 用户的userid /// [JsonProperty("user_id")] public string UserId { get; set; } } }