Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
- using System.Collections.Generic;
-
- namespace Permission.Service.DTO.ApiModels
- {
- public class NetDiskFile
- {
- public NetDiskFile()
- {
- ChildFiles = new List<NetDiskFile>();
- }
-
- public string FileId { get; set; }
- public string Name { get; set; }
- public string ParentId { get; set; }
- //0为文件夹 1为文件
- public int FileType { get; set; }
-
- public int? TotalBytes { get; set; }
-
- public string DownloadPath { get; set; }
-
- public DateTime ModifiedTime { get; set; }
-
- public IEnumerable<NetDiskFile> ChildFiles { get; set; }
-
- }
-
- public class BaseFile
- {
- public string FileId { get; set; }
- public string Name { get; set; }
- public string ParentId { get; set; }
- //0为文件夹 1为文件
- public int FileType { get; set; }
-
- public int? TotalBytes { get; set; }
-
- public string DownloadPath { get; set; }
-
- public DateTime ModifiedTime { get; set; }
- }
-
-
- }
|