feat(m9/T23a): folder sibling reorder (ReorderFolderAsync + command + handler)
This commit is contained in:
@@ -1,8 +1,11 @@
|
||||
using ZB.MOM.WW.ScadaBridge.Commons.Types.Enums;
|
||||
|
||||
namespace ZB.MOM.WW.ScadaBridge.Commons.Messages.Management;
|
||||
|
||||
public record ListTemplateFoldersCommand;
|
||||
public record CreateTemplateFolderCommand(string Name, int? ParentFolderId);
|
||||
public record RenameTemplateFolderCommand(int FolderId, string NewName);
|
||||
public record MoveTemplateFolderCommand(int FolderId, int? NewParentFolderId);
|
||||
public record ReorderTemplateFolderCommand(int FolderId, ReorderDirection Direction);
|
||||
public record DeleteTemplateFolderCommand(int FolderId);
|
||||
public record MoveTemplateToFolderCommand(int TemplateId, int? NewFolderId);
|
||||
|
||||
Reference in New Issue
Block a user