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;
|
2024-09-18 13:37:11 +03:00
|
|
|
import Visual_DVM_2021.Passes.Server.DeleteServerObjects;
|
2023-12-06 01:50:11 +03:00
|
|
|
public class DeleteGroup extends DeleteServerObjects<TestingServer, Group> {
|
2023-11-16 22:11:58 +03:00
|
|
|
public DeleteGroup() {
|
|
|
|
|
super(Global.testingServer, Group.class);
|
|
|
|
|
}
|
|
|
|
|
}
|