1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using Microsoft . AspNetCore . Http ;
4
+
5
+ namespace Syncfusion . EJ2 . FileManager . Base
6
+ {
7
+ /// <exclude />
8
+ public class FileManagerDirectoryContent
9
+ {
10
+ public string Path { get ; set ; }
11
+
12
+ public string Action { get ; set ; }
13
+
14
+ public string NewName { get ; set ; }
15
+
16
+ public string [ ] Names { get ; set ; }
17
+
18
+ public string Name { get ; set ; }
19
+
20
+ public long Size { get ; set ; }
21
+
22
+ public string PreviousName { get ; set ; }
23
+
24
+ public DateTime DateModified { get ; set ; }
25
+
26
+ public DateTime DateCreated { get ; set ; }
27
+
28
+ public bool HasChild { get ; set ; }
29
+
30
+ public bool IsFile { get ; set ; }
31
+
32
+ public string Type { get ; set ; }
33
+
34
+ public string Id { get ; set ; }
35
+
36
+ public string FilterPath { get ; set ; }
37
+
38
+ public string FilterId { get ; set ; }
39
+
40
+ public string ParentId { get ; set ; }
41
+
42
+ public string TargetPath { get ; set ; }
43
+
44
+ public string [ ] RenameFiles { get ; set ; }
45
+
46
+ public IList < IFormFile > UploadFiles { get ; set ; }
47
+
48
+ public bool CaseSensitive { get ; set ; }
49
+
50
+
51
+ public string SearchString { get ; set ; }
52
+
53
+ public bool ShowHiddenItems { get ; set ; }
54
+
55
+ public bool ShowFileExtension { get ; set ; }
56
+
57
+ public FileManagerDirectoryContent [ ] Data { get ; set ; }
58
+
59
+ public FileManagerDirectoryContent TargetData { get ; set ; }
60
+
61
+ public AccessPermission Permission { get ; set ; }
62
+ }
63
+ }
0 commit comments