Blame view

netcore/src/Infrastructure/NCC.Expand.Thirdparty/Email/Model/MailFile.cs 825 Bytes
de2bd2f9   “wangming”   项目初始化
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
  using NCC.Dependency;
  using System;
  
  namespace NCC.Expand.Thirdparty.Email.Model
  {
      [SuppressSniffer]
      public class MailFile
      {
          /// <summary>
          /// 文件id
          /// </summary>
          public string fileId { get; set; }
          /// <summary>
          /// 文件名
          /// </summary>
          public string fileName { get; set; }
          /// <summary>
          /// 文件大小
          /// </summary>
          public string fileSize { get; set; }
          /// <summary>
          /// 文件时间
          /// </summary>
          public DateTime fileTime { get; set; }
          /// <summary>
          /// 文件状态
          /// </summary>
          public string fileState { get; set; }
          /// <summary>
          /// 文件名
          /// </summary>
          public string name { get; set; }
      }
  }