星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Model_WKData.cs 1.0KB

hace 4 años
hace 4 años
123456789101112131415161718192021222324252627282930313233
  1. using System.Collections.Generic;
  2. namespace XHWK.Model
  3. {
  4. public class Model_WKData
  5. {
  6. private string _wkName;
  7. private List<Model_Video> _videoList;
  8. private string _wkPath;
  9. private string _wkDateTime;
  10. private string _drawDataPath;
  11. /// <summary>
  12. /// 微课名
  13. /// </summary>
  14. public string WkName { get => _wkName; set => _wkName = value; }
  15. /// <summary>
  16. /// 视频列表
  17. /// </summary>
  18. public List<Model_Video> VideoList { get => _videoList; set => _videoList = value; }
  19. /// <summary>
  20. /// 微课路径
  21. /// </summary>
  22. public string WkPath { get => _wkPath; set => _wkPath = value; }
  23. /// <summary>
  24. /// 微课时间
  25. /// </summary>
  26. public string WkDateTime { get => _wkDateTime; set => _wkDateTime = value; }
  27. /// <summary>
  28. /// 画板数据存储路径
  29. /// </summary>
  30. public string DrawDataPath { get => _drawDataPath; set => _drawDataPath = value; }
  31. }
  32. }