ArtMusic.cs 809 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.Json;
  6. using System.Threading.Tasks;
  7. namespace TEAMModelOS.SDK.Models.Cosmos.Common
  8. {
  9. public class ArtMusic : CosmosEntity
  10. {
  11. public ArtMusic()
  12. {
  13. pk = "ArtMusic";
  14. }
  15. //模块ID
  16. public string activityId { get; set; }
  17. //第三方平台返回的结构
  18. public string questionId { get; set; }
  19. public string questionName { get; set; }
  20. public List<MustSong> mustSong { get; set; } = new List<MustSong>();
  21. public List<MustSong> optionSong { get; set; } = new List<MustSong>();
  22. }
  23. public class MustSong
  24. {
  25. public string songId { get; set; }
  26. public string songName { get; set; }
  27. }
  28. }