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 string period { get; set; }
///
///
///
public string type { get; set; }
}
}