Bloblog.cs 818 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models
  5. {
  6. /// <summary>
  7. /// 内容上传记录
  8. /// </summary>
  9. public class Bloblog :CosmosEntity
  10. {
  11. public string name { get; set; }
  12. public string url { get; set; }
  13. public long time { get; set; }
  14. public long size { get; set; }
  15. public List<string> periodId { get; set; } = new List<string>() { "" };
  16. public List<string> subjectId { get; set; } = new List<string>() { "" };
  17. public List<string> gradeId { get; set; } = new List<string>() { "" };
  18. /// <summary>
  19. /// audio 音频,video 视频 ,doc文档,image图片,other 其他,res教材,thum缩略图
  20. /// </summary>
  21. public string type { get; set; }
  22. }
  23. }