2024-10-14 12:14:01 +03:00
|
|
|
package _VisualDVM.Passes.All;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.TestingSystem.Common.Group.Group;
|
|
|
|
|
import _VisualDVM.TestingSystem.Common.TestingServer;
|
2024-10-14 12:14:01 +03:00
|
|
|
import _VisualDVM.Passes.Server.EditServerObject;
|
2023-11-19 02:12:44 +03:00
|
|
|
public class EditGroup extends EditServerObject<TestingServer, Group> {
|
|
|
|
|
public EditGroup() {
|
|
|
|
|
super(Global.testingServer, Group.class);
|
|
|
|
|
}
|
|
|
|
|
}
|