2023-11-19 01:53:56 +03:00
|
|
|
package Common.Passes.All;
|
2023-11-16 22:11:58 +03:00
|
|
|
import Common.Global;
|
2023-11-19 01:53:56 +03:00
|
|
|
import Repository.TestingSystem.Common.Group.Group;
|
|
|
|
|
import Repository.TestingSystem.Common.TestingServer;
|
|
|
|
|
import Common.Passes.Server.DeleteServerObject;
|
2023-11-16 22:11:58 +03:00
|
|
|
public class DeleteGroup extends DeleteServerObject<TestingServer, Group> {
|
|
|
|
|
public DeleteGroup() {
|
|
|
|
|
super(Global.testingServer, Group.class);
|
|
|
|
|
}
|
|
|
|
|
}
|