You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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; }
- }
-
-
- }
|