11 lines
256 B
Plaintext
11 lines
256 B
Plaintext
@startuml
|
|
class DeleteGroupCommand {
|
|
+ DeleteGroupCommand(blocksId:List<string>)
|
|
+ DeleteGroupCommand(commandDTO:CommandDTO)
|
|
+ execute() : void
|
|
+ undo() : void
|
|
+ toDTO() : CommandDTO
|
|
}
|
|
ICommand <|-- DeleteGroupCommand
|
|
@enduml
|