星火微课系统客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Model_WKData.cs 1.1KB

4 年前
4 年前
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 _wkCreateDateTime;
  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 WkCreateDateTime { get => _wkCreateDateTime; set => _wkCreateDateTime = value; }
  27. /// <summary>
  28. /// 画板数据存储路径
  29. /// </summary>
  30. public string DrawDataPath { get => _drawDataPath; set => _drawDataPath = value; }
  31. }
  32. }