using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Models
{
///
/// 内容上传记录
///
public class Bloblog :CosmosEntity
{
public string name { get; set; }
public string url { get; set; }
public long time { get; set; }
public long size { get; set; }
public List periodId { get; set; } = new List() { "" };
public List subjectId { get; set; } = new List() { "" };
public List gradeId { get; set; } = new List() { "" };
///
/// audio 音频,video 视频 ,doc文档,image图片,other 其他,res教材,thum缩略图
///
public string type { get; set; }
}
}