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