|
@@ -15,12 +15,15 @@ namespace TEAMModelOS.SDK.Models.Cosmos.Common
|
|
|
}
|
|
|
//模块ID
|
|
|
public string activityId { get; set; }
|
|
|
- public List<StuInfo> stus { get; set; }
|
|
|
//第三方平台返回的结构
|
|
|
- public JsonElement JsonElement { get; set; }
|
|
|
+ public string questionId { get; set; }
|
|
|
+ public string questionName { get; set; }
|
|
|
+ public List<MustSong> mustSong { get; set; } = new List<MustSong>();
|
|
|
+ public List<MustSong> optionSong { get; set; } = new List<MustSong>();
|
|
|
}
|
|
|
- public class StuInfo {
|
|
|
- public string stuId { get; set; }
|
|
|
- public List<double> scores { get; set; }
|
|
|
+ public class MustSong
|
|
|
+ {
|
|
|
+ public string songId { get; set; }
|
|
|
+ public string songName { get; set; }
|
|
|
}
|
|
|
}
|