using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace TEAMModelOS.SDK.Models
{
///
/// 作业附件
///
public class Attachment
{
///
/// 文件名字
///
public string name { get; set; }
///
///
///
public string url { get; set; }
///
/// 文件大小
///
public long size { get; set; }
///
/// 创建时间
///
public long createTime { get; set; }
///
/// 文件后缀
///
public string extension { get; set; }
///
/// 文件类型
///
public string type { get; set; }
public string blob { get; set; }
///
/// 设置为主要提交文档。
///
public bool prime { get; set; } = false;
}
}