aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Models/FileSystemEntry.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/api/Models/FileSystemEntry.cs')
-rw-r--r--code/api/Models/FileSystemEntry.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/code/api/Models/FileSystemEntry.cs b/code/api/Models/FileSystemEntry.cs
index 432f87c..cdb1213 100644
--- a/code/api/Models/FileSystemEntry.cs
+++ b/code/api/Models/FileSystemEntry.cs
@@ -4,6 +4,7 @@ public class FileSystemEntry
{
public Guid Id { get; set; }
public string Name { get; set; }
- public string ContentType { get; set; }
+ public string MimeType { get; set; }
public long SizeInBytes { get; set; }
+ public List<FileSystemEntry> Files { get; set; }
} \ No newline at end of file