Blame view

netcore/src/Modularity/Common/NCC.Common/Model/FileControlsModel.cs 476 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
  namespace NCC.Common.Model
  {
      /// <summary>
      /// 文件控件模型
      /// </summary>
      public class FileControlsModel
      {
          /// <summary>
          /// 文件名称
          /// </summary>
          public string name { get; set; }
  
          /// <summary>
          /// 文件ID
          /// </summary>
          public string fileId { get; set; }
  
          /// <summary>
          /// 下载地址
          /// </summary>
          public string url { get; set; }
      }
  }