using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IStation.Bimface
{
///
/// 文件上传返回结果
///
public class UploadFileResponse
{
public DateTime? createTime { get; set; }
public string etag { get; set; }
public long? fileId { get; set; }
///
/// 文件流的长度(单位:byte)
///
public long? length { get; set; }
///
/// 文件的名称,包括后缀
///
public string name { get; set; }
///
/// 上传文件的返回结果状态:success 或其他
///
public string status { get; set; }
///
/// 文件名的后缀
///
public string suffix { get; set; }
}
}