duheng
2024-05-22 f0aaa59c3bb1ef75affcacadbcc8fae21149f52c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace IStation.Bimface
{
    /// <summary>
    /// 文件上传返回结果
    /// </summary>
    public class UploadFileResponse
    {
        public DateTime? createTime { get; set; }
        public string etag { get; set; }
        public long? fileId { get; set; }
 
        /// <summary>
        /// 文件流的长度(单位:byte)
        /// </summary>
        public long? length { get; set; }
 
        /// <summary>
        /// 文件的名称,包括后缀
        /// </summary>
        public string name { get; set; }
 
        /// <summary>
        /// 上传文件的返回结果状态:success 或其他
        /// </summary>
        public string status { get; set; }
 
        /// <summary>
        /// 文件名的后缀
        /// </summary>
        public string suffix { get; set; }
    }
}