diff --git a/src/Application/Services/FolderService.cs b/src/Application/Services/FolderService.cs index 73357cb..eca6d62 100644 --- a/src/Application/Services/FolderService.cs +++ b/src/Application/Services/FolderService.cs @@ -50,6 +50,7 @@ private Folder FolderInDtoToFolder(FolderInDto folderInDto) Icon = folderInDto.Icon, Description = folderInDto.Description, LastModified = folderInDto.LastModified, + IndexInParent = folderInDto.IndexInParent, Children = new List() }; @@ -88,6 +89,7 @@ private async Task FolderToFolderOutDto(Folder folder) Color = folder.Color, Icon = folder.Icon, LastModified = folder.LastModified, + IndexInParent = folder.IndexInParent, Description = folder.Description };