Blame view

netcore/src/Modularity/Common/NCC.Common/FileManage/FileModel.cs 543 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
  using System;
  
  namespace NCC.Common.FileManage
  {
      /// <summary>
      /// 附件模型
      ///  本:V3.0.0
      ///  权:Wesleyhttps://www.NCCsoft.com
      ///  者:NCC开发平台组
      /// </summary>
      public class FileModel
      {
          public string FileId { get; set; }
  
          public string FileName { get; set; }
  
          public string FileSize { get; set; }
  
          public DateTime FileTime { get; set; }
  
          public string FileState { get; set; }
  
          public string FileType { get; set; }
      }
  }